]> granicus.if.org Git - python/log
python
17 years agoRip out the file object's implementation.
Guido van Rossum [Tue, 12 Jun 2007 23:30:11 +0000 (23:30 +0000)]
Rip out the file object's implementation.
Fixed test_import.py while I was at it.

However, there's still a problem in import.c -- get_file() can leak a
FILE struct (not a file descriptor though).  I'm not sure how to fix
this; closing the FILE* closes the file descriptor, and that's the
wrong thing to do when there's still a Python file object keeping the
file descriptor open.  I also would rather not mess with dup(), as it
won't port to Windows.

17 years agounicode is named str now => fix type check.
Walter Dörwald [Tue, 12 Jun 2007 18:07:38 +0000 (18:07 +0000)]
unicode is named str now => fix type check.

17 years agoFix test_shlex: Use io.StringIO.
Walter Dörwald [Tue, 12 Jun 2007 17:43:43 +0000 (17:43 +0000)]
Fix test_shlex: Use io.StringIO.

17 years agoMention name of left operand, if "foo in unicode_string"
Walter Dörwald [Tue, 12 Jun 2007 16:51:31 +0000 (16:51 +0000)]
Mention name of left operand, if "foo in unicode_string"
fails.

17 years agoRip out all codecs that can't work in a unicode/bytes world:
Walter Dörwald [Tue, 12 Jun 2007 16:40:17 +0000 (16:40 +0000)]
Rip out all codecs that can't work in a unicode/bytes world:
base64, uu, zlib, rot_13, hex, quopri, bz2, string_escape.

However codecs.escape_encode() and codecs.escape_decode()
still exist, as they are used for pickling str8 objects
(so those two functions can go, when the str8 type is removed).

17 years agoMake module docstrings unicode objects.
Walter Dörwald [Tue, 12 Jun 2007 15:23:50 +0000 (15:23 +0000)]
Make module docstrings unicode objects.

17 years agoRevert 55876. Use PyUnicode_AsEncodedString instead.
Martin v. Löwis [Tue, 12 Jun 2007 05:53:00 +0000 (05:53 +0000)]
Revert 55876. Use PyUnicode_AsEncodedString instead.

17 years agoDuh. Delete the outdated comment too.
Guido van Rossum [Tue, 12 Jun 2007 00:41:35 +0000 (00:41 +0000)]
Duh.  Delete the outdated comment too.

17 years agoSeems this test is just fine. It fails because __phello__.spam
Guido van Rossum [Tue, 12 Jun 2007 00:41:02 +0000 (00:41 +0000)]
Seems this test is just fine.  It fails because __phello__.spam
doesn't exist, but that seems a separate issue.

17 years agoMinimal changes to make the "freeze" tool work again.
Guido van Rossum [Tue, 12 Jun 2007 00:28:30 +0000 (00:28 +0000)]
Minimal changes to make the "freeze" tool work again.
There are other issues left, but these were basics (e.g. keys().sort()).

17 years agoUpdate the frozen bytecode for __hello__.
Guido van Rossum [Tue, 12 Jun 2007 00:25:52 +0000 (00:25 +0000)]
Update the frozen bytecode for __hello__.

17 years agoSome quick fixes of code that was sorting dict.keys() etc.
Guido van Rossum [Tue, 12 Jun 2007 00:25:08 +0000 (00:25 +0000)]
Some quick fixes of code that was sorting dict.keys() etc.

17 years agoRemove unused code.
Walter Dörwald [Mon, 11 Jun 2007 21:48:58 +0000 (21:48 +0000)]
Remove unused code.

17 years agoSimplify various spots where: str() is called on something
Walter Dörwald [Mon, 11 Jun 2007 21:38:39 +0000 (21:38 +0000)]
Simplify various spots where: str() is called on something
that already is a string or the existence of the str class
is checked or a check is done for str twice. These all stem
from the initial unicode->str replacement.

17 years agoAdd versionadded notes to PyUnicode_FromString(),
Walter Dörwald [Mon, 11 Jun 2007 16:44:48 +0000 (16:44 +0000)]
Add versionadded notes to PyUnicode_FromString(),
PyUnicode_FromFormat() and PyUnicode_FromFormatV().

17 years agoDocument PyUnicode_FromFormat().
Walter Dörwald [Mon, 11 Jun 2007 16:43:18 +0000 (16:43 +0000)]
Document PyUnicode_FromFormat().

17 years agoAdd a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,
Walter Dörwald [Mon, 11 Jun 2007 16:36:59 +0000 (16:36 +0000)]
Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,
but requires an additional char * that will be used if the unicode object is
NULL.

Use %V in descrobject.c and classobject.c.

17 years agoFix PyErr_Format() call (missing exception class).
Walter Dörwald [Mon, 11 Jun 2007 16:12:10 +0000 (16:12 +0000)]
Fix PyErr_Format() call (missing exception class).

Remove unused variable.

17 years agoUse PyErr_Format() directly instead of
Walter Dörwald [Mon, 11 Jun 2007 16:08:41 +0000 (16:08 +0000)]
Use PyErr_Format() directly instead of
PyOS_snprintf()+PyErr_SetString().

17 years agoSimplify error formatting. Fix error message in
Walter Dörwald [Mon, 11 Jun 2007 16:06:26 +0000 (16:06 +0000)]
Simplify error formatting. Fix error message in
check_unoptimized().

17 years agoSimplify ste_repr().
Walter Dörwald [Mon, 11 Jun 2007 16:03:16 +0000 (16:03 +0000)]
Simplify ste_repr().

17 years agoSimplify error formatting and type_repr().
Walter Dörwald [Mon, 11 Jun 2007 15:47:13 +0000 (15:47 +0000)]
Simplify error formatting and type_repr().

17 years agoSimplify error formatting.
Walter Dörwald [Mon, 11 Jun 2007 15:37:20 +0000 (15:37 +0000)]
Simplify error formatting.

17 years agoSimplify error formatting (no default encoding required).
Walter Dörwald [Mon, 11 Jun 2007 15:00:18 +0000 (15:00 +0000)]
Simplify error formatting (no default encoding required).

17 years agoCheck unicode identifier directly instead of converting
Walter Dörwald [Mon, 11 Jun 2007 14:55:19 +0000 (14:55 +0000)]
Check unicode identifier directly instead of converting
it to an 8bit string first.

17 years ago__module__ is a unicode string now:
Walter Dörwald [Mon, 11 Jun 2007 14:03:45 +0000 (14:03 +0000)]
__module__ is a unicode string now:
use PyUnicode_CompareWithASCIIString() instead of
strcmp().

Simplify repr formatting.

17 years agoShort-cut lookup of utf-8 codec, to make import work
Martin v. Löwis [Mon, 11 Jun 2007 04:19:13 +0000 (04:19 +0000)]
Short-cut lookup of utf-8 codec, to make import work
on OSX.

17 years agoExpect unicode in class_name.
Martin v. Löwis [Sun, 10 Jun 2007 21:13:34 +0000 (21:13 +0000)]
Expect unicode in class_name.

17 years agoFix getclassname. Fixes test_descrtut.
Martin v. Löwis [Sun, 10 Jun 2007 21:09:40 +0000 (21:09 +0000)]
Fix getclassname. Fixes test_descrtut.

17 years agoMake identifiers str (not str8) objects throughout.
Martin v. Löwis [Sun, 10 Jun 2007 09:51:05 +0000 (09:51 +0000)]
Make identifiers str (not str8) objects throughout.
This affects the parser, various object implementations,
and all places that put identifiers into C string literals.

In testing, a number of crashes occurred as code would
fail when the recursion limit was reached (such as the
Unicode interning dictionary having key/value pairs where
key is not value). To solve these, I added an overflowed
flag, which allows for 50 more recursions after the
limit was reached and the exception was raised, and
a recursion_critical flag, which indicates that recursion
absolutely must be allowed, i.e. that a certain call
must not cause a stack overflow exception.

There are still some places where both str and str8 are
accepted as identifiers; these should eventually be
removed.

17 years agoAdapt to new exception message.
Walter Dörwald [Sat, 9 Jun 2007 16:13:23 +0000 (16:13 +0000)]
Adapt to new exception message.

Simplify formatting (use "%r" % x instead of "%s" % repr(x)).

17 years agoFix Cookie.py: Fix example in the docstring (encoded SerialCookies contain
Walter Dörwald [Fri, 8 Jun 2007 15:33:46 +0000 (15:33 +0000)]
Fix Cookie.py: Fix example in the docstring (encoded SerialCookies contain
unicode now). Fix _quote() and Morsel.set() which were using str8.translate().
As cPickle.dumps() returns bytes now value_encode() and value_decode() methods
must encode/decode (however output() might better return a bytes object).

17 years agoRename checks for test_support.have_unicode (we always
Walter Dörwald [Fri, 8 Jun 2007 14:30:53 +0000 (14:30 +0000)]
Rename checks for test_support.have_unicode (we always
have unicode support now) and either drop the tests or
merge them into the existing tests.

17 years agoFix chr() test (1000000 was accepted on a UCS4 build).
Walter Dörwald [Fri, 8 Jun 2007 10:38:38 +0000 (10:38 +0000)]
Fix chr() test (1000000 was accepted on a UCS4 build).

17 years agoMake test_socket work.
Guido van Rossum [Fri, 8 Jun 2007 00:07:57 +0000 (00:07 +0000)]
Make test_socket work.
Don't exclude test_socket from the tests to run.

17 years agoJust enoug fixes so that test_mailbox fails instead of loops forever.
Guido van Rossum [Thu, 7 Jun 2007 23:58:54 +0000 (23:58 +0000)]
Just enoug fixes so that test_mailbox fails instead of loops forever.

17 years agoAccellerate binary readline() a bit.
Guido van Rossum [Thu, 7 Jun 2007 23:45:37 +0000 (23:45 +0000)]
Accellerate binary readline() a bit.

17 years agoMerged revisions 55795-55816 via svnmerge from
Guido van Rossum [Thu, 7 Jun 2007 23:15:56 +0000 (23:15 +0000)]
Merged revisions 55795-55816 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

........
  r55797 | neal.norwitz | 2007-06-07 00:00:57 -0700 (Thu, 07 Jun 2007) | 3 lines

  Get rid of some remnants of classic classes.  types.ClassType == type.
  Also get rid of almost all uses of the types module and use the builtin name.
........
  r55798 | neal.norwitz | 2007-06-07 00:12:36 -0700 (Thu, 07 Jun 2007) | 1 line

  Remove a use of types, verify commit hook works
........
  r55809 | guido.van.rossum | 2007-06-07 11:11:29 -0700 (Thu, 07 Jun 2007) | 2 lines

  Fix syntax error introduced by Neal in last checkin.
........

17 years agoFix pdb help command.
Alexandre Vassalotti [Thu, 7 Jun 2007 22:37:45 +0000 (22:37 +0000)]
Fix pdb help command.

17 years agoThe bufsize argument to Popen() should accept None meaning the default (0).
Guido van Rossum [Thu, 7 Jun 2007 21:56:45 +0000 (21:56 +0000)]
The bufsize argument to Popen() should accept None meaning the default (0).

17 years agoChange normalize_encodings() to avoid using .translate() or depending on
Guido van Rossum [Thu, 7 Jun 2007 21:43:46 +0000 (21:43 +0000)]
Change normalize_encodings() to avoid using .translate() or depending on
the string type.  It will always return a Unicode string.  The algoritm's
specification is unchanged.

17 years agoFix libc_ver(): libc_ver() was reading sys.executable
Walter Dörwald [Thu, 7 Jun 2007 19:26:24 +0000 (19:26 +0000)]
Fix libc_ver(): libc_ver() was reading sys.executable
in binary mode and comparing the content to strings,
which failed. Now the bytes get decoded into unicode
using latin-1 (the comparison compares ASCII strings
only anyway, and we don't want the decoding to fail).

17 years agoChange most sys attributes that were str8 objects into str objects
Walter Dörwald [Thu, 7 Jun 2007 18:41:59 +0000 (18:41 +0000)]
Change most sys attributes that were str8 objects into str objects
(executable, prefix and exec_prefix are still str8).

17 years agoDon't lie in error messages from str8.
Guido van Rossum [Thu, 7 Jun 2007 17:54:36 +0000 (17:54 +0000)]
Don't lie in error messages from str8.
In some cases we use the more neutral term string; in others we are explicit.

17 years agoFix test_str.py so that it tests the str8 class.
Walter Dörwald [Thu, 7 Jun 2007 13:52:37 +0000 (13:52 +0000)]
Fix test_str.py so that it tests the str8 class.

Fix string_tests.py::MixinStrUnicodeTest.test_bug1001011():
Test str and str8.

17 years agoRegister a dispatcher for str8. (This makes test_copy.py pass again.)
Walter Dörwald [Thu, 7 Jun 2007 13:11:04 +0000 (13:11 +0000)]
Register a dispatcher for str8. (This makes test_copy.py pass again.)

Make registeration of str dispatcher unconditional.

17 years agoFix test_deque.py: Read and write file in text mode,
Walter Dörwald [Thu, 7 Jun 2007 12:40:09 +0000 (12:40 +0000)]
Fix test_deque.py: Read and write file in text mode,
so that read() returns a unicode object, which can be
compared directly to the repr() result.

17 years agoFix tests for unicode-internal codec.
Walter Dörwald [Thu, 7 Jun 2007 11:26:16 +0000 (11:26 +0000)]
Fix tests for unicode-internal codec.

17 years agotokenizer.c: make coding markup work again.
Guido van Rossum [Thu, 7 Jun 2007 00:54:15 +0000 (00:54 +0000)]
tokenizer.c: make coding markup work again.

io.open() now takes all positional parameters (so we can conveniently
call it from C code).

test_tarfile.py no longer uses u"..." literals, but is otherwise still
badly broken.

This is a checkpoint; some more stuff now breaks.

17 years agoMerged revisions 55631-55794 via svnmerge from
Guido van Rossum [Wed, 6 Jun 2007 23:52:48 +0000 (23:52 +0000)]
Merged revisions 55631-55794 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r55636 | neal.norwitz | 2007-05-29 00:06:39 -0700 (Tue, 29 May 2007) | 149 lines

  Merged revisions 55506-55635 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r55507 | georg.brandl | 2007-05-22 07:28:17 -0700 (Tue, 22 May 2007) | 2 lines

    Remove the "panel" module doc file which has been ignored since 1994.
  ........
    r55522 | mark.hammond | 2007-05-22 19:04:28 -0700 (Tue, 22 May 2007) | 4 lines

    Remove definition of PY_UNICODE_TYPE from pyconfig.h, allowing the
    definition in unicodeobject.h to be used, giving us the desired
    wchar_t in place of 'unsigned short'.  As discussed on python-dev.
  ........
    r55525 | neal.norwitz | 2007-05-22 23:35:32 -0700 (Tue, 22 May 2007) | 6 lines

    Add -3 option to the interpreter to warn about features that are
    deprecated and will be changed/removed in Python 3.0.

    This patch is mostly from Anthony.  I tweaked some format and added
    a little doc.
  ........
    r55527 | neal.norwitz | 2007-05-22 23:57:35 -0700 (Tue, 22 May 2007) | 1 line

    Whitespace cleanup
  ........
    r55528 | neal.norwitz | 2007-05-22 23:58:36 -0700 (Tue, 22 May 2007) | 1 line

    Add a bunch more deprecation warnings for builtins that are going away in 3.0
  ........
    r55549 | georg.brandl | 2007-05-24 09:49:29 -0700 (Thu, 24 May 2007) | 2 lines

    shlex.split() now has an optional "posix" parameter.
  ........
    r55550 | georg.brandl | 2007-05-24 10:33:33 -0700 (Thu, 24 May 2007) | 2 lines

    Fix parameter passing.
  ........
    r55555 | facundo.batista | 2007-05-24 10:50:54 -0700 (Thu, 24 May 2007) | 6 lines

    Added an optional timeout parameter to urllib.ftpwrapper, with tests
    (for this and a basic one, because there weren't any). Changed also
    NEWS, but didn't find documentation for this function, assumed it
    wasn't public...
  ........
    r55563 | facundo.batista | 2007-05-24 13:01:59 -0700 (Thu, 24 May 2007) | 4 lines

    Removed the .recv() in the test, is not necessary, and was
    causing problems that didn't have anything to do with was
    actually being tested...
  ........
    r55564 | facundo.batista | 2007-05-24 13:51:19 -0700 (Thu, 24 May 2007) | 5 lines

    Let's see if reading exactly what is written allow this live
    test to pass (now I know why there were so few tests in ftp,
    http, etc, :( ).
  ........
    r55567 | facundo.batista | 2007-05-24 20:10:28 -0700 (Thu, 24 May 2007) | 4 lines

    Trying to make the tests work in Windows and Solaris, everywhere
    else just works
  ........
    r55568 | facundo.batista | 2007-05-24 20:47:19 -0700 (Thu, 24 May 2007) | 4 lines

    Fixing stupid error, and introducing a sleep, to see if the
    other thread is awakened and finish sending data.
  ........
    r55569 | facundo.batista | 2007-05-24 21:20:22 -0700 (Thu, 24 May 2007) | 4 lines

    Commenting out the tests until find out who can test them in
    one of the problematic enviroments.
  ........
    r55570 | neal.norwitz | 2007-05-24 22:13:40 -0700 (Thu, 24 May 2007) | 2 lines

    Get test passing again by commenting out the reference to the test class.
  ........
    r55575 | vinay.sajip | 2007-05-25 00:05:59 -0700 (Fri, 25 May 2007) | 1 line

    Updated docstring for SysLogHandler (#1720726).
  ........
    r55576 | vinay.sajip | 2007-05-25 00:06:55 -0700 (Fri, 25 May 2007) | 1 line

    Updated documentation for SysLogHandler (#1720726).
  ........
    r55592 | brett.cannon | 2007-05-25 13:17:15 -0700 (Fri, 25 May 2007) | 3 lines

    Remove direct call's to file's constructor and replace them with calls to
    open() as ths is considered best practice.
  ........
    r55601 | kristjan.jonsson | 2007-05-26 12:19:50 -0700 (Sat, 26 May 2007) | 1 line

    Remove the rgbimgmodule from PCBuild8
  ........
    r55602 | kristjan.jonsson | 2007-05-26 12:31:39 -0700 (Sat, 26 May 2007) | 1 line

    Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included.  Fixes warnings in PC builds.
  ........
    r55603 | walter.doerwald | 2007-05-26 14:04:13 -0700 (Sat, 26 May 2007) | 2 lines

    Fix typo.
  ........
    r55604 | peter.astrand | 2007-05-26 15:18:20 -0700 (Sat, 26 May 2007) | 1 line

    Applied patch 1669481, slightly modified: Support close_fds on Win32
  ........
    r55606 | neal.norwitz | 2007-05-26 21:08:54 -0700 (Sat, 26 May 2007) | 2 lines

    Add the new function object attribute names from py3k.
  ........
    r55617 | lars.gustaebel | 2007-05-27 12:49:30 -0700 (Sun, 27 May 2007) | 20 lines

    Added errors argument to TarFile class that allows the user to
    specify an error handling scheme for character conversion. Additional
    scheme "utf-8" in read mode. Unicode input filenames are now
    supported by design. The values of the pax_headers dictionary are now
    limited to unicode objects.

    Fixed: The prefix field is no longer used in PAX_FORMAT (in
    conformance with POSIX).
    Fixed: In read mode use a possible pax header size field.
    Fixed: Strip trailing slashes from pax header name values.
    Fixed: Give values in user-specified pax_headers precedence when
    writing.

    Added unicode tests. Added pax/regtype4 member to testtar.tar all
    possible number fields in a pax header.

    Added two chapters to the documentation about the different formats
    tarfile.py supports and how unicode issues are handled.
  ........
    r55618 | raymond.hettinger | 2007-05-27 22:23:22 -0700 (Sun, 27 May 2007) | 1 line

    Explain when groupby() issues a new group.
  ........
    r55634 | martin.v.loewis | 2007-05-28 21:01:29 -0700 (Mon, 28 May 2007) | 2 lines

    Test pre-commit hook for a link to a .py file.
  ........
    r55635 | martin.v.loewis | 2007-05-28 21:02:03 -0700 (Mon, 28 May 2007) | 2 lines

    Revert 55634.
  ........
................
  r55639 | neal.norwitz | 2007-05-29 00:58:11 -0700 (Tue, 29 May 2007) | 1 line

  Remove sys.exc_{type,exc_value,exc_traceback}
................
  r55641 | neal.norwitz | 2007-05-29 01:03:50 -0700 (Tue, 29 May 2007) | 1 line

  Missed one sys.exc_type.  I wonder why exc_{value,traceback} were already gone
................
  r55642 | neal.norwitz | 2007-05-29 01:08:33 -0700 (Tue, 29 May 2007) | 1 line

  Missed more doc for sys.exc_* attrs.
................
  r55643 | neal.norwitz | 2007-05-29 01:18:19 -0700 (Tue, 29 May 2007) | 1 line

  Remove sys.exc_clear()
................
  r55665 | guido.van.rossum | 2007-05-29 19:45:43 -0700 (Tue, 29 May 2007) | 4 lines

  Make None, True, False keywords.
  We can now also delete all the other places that explicitly forbid
  assignment to None, but I'm not going to bother right now.
................
  r55666 | guido.van.rossum | 2007-05-29 20:01:51 -0700 (Tue, 29 May 2007) | 3 lines

  Found another place that needs check for forbidden names.
  Fixed test_syntax.py accordingly (it helped me find that one).
................
  r55668 | guido.van.rossum | 2007-05-29 20:41:48 -0700 (Tue, 29 May 2007) | 2 lines

  Mark None, True, False as keywords.
................
  r55673 | neal.norwitz | 2007-05-29 23:28:25 -0700 (Tue, 29 May 2007) | 3 lines

  Get the dis module working on modules again after changing dicts
  to not return lists and also new-style classes.  Add a test.
................
  r55674 | neal.norwitz | 2007-05-29 23:35:45 -0700 (Tue, 29 May 2007) | 1 line

  Umm, it helps to add the module that the test uses
................
  r55675 | neal.norwitz | 2007-05-29 23:53:05 -0700 (Tue, 29 May 2007) | 4 lines

  Try to fix up all the other places that were assigning to True/False.
  There's at least one more problem in test.test_xmlrpc.  I have other
  changes in that file and that should be fixed soon (I hope).
................
  r55679 | neal.norwitz | 2007-05-30 00:31:55 -0700 (Wed, 30 May 2007) | 1 line

  Fix up another place that was assigning to True/False.
................
  r55688 | brett.cannon | 2007-05-30 14:19:47 -0700 (Wed, 30 May 2007) | 2 lines

  Ditch MimeWriter.
................
  r55692 | brett.cannon | 2007-05-30 14:52:00 -0700 (Wed, 30 May 2007) | 2 lines

  Remove the mimify module.
................
  r55707 | guido.van.rossum | 2007-05-31 05:08:45 -0700 (Thu, 31 May 2007) | 2 lines

  Backport the addition of show_code() to dis.py -- it's too handy.
................
  r55708 | guido.van.rossum | 2007-05-31 06:22:57 -0700 (Thu, 31 May 2007) | 7 lines

  Fix a fairly long-standing bug in the check for assignment to None (and other
  keywords, these days).  In 2.5, you could write foo(None=1) without getting
  a SyntaxError (although foo()'s definition would have to use **kwds to avoid
  getting a runtime error complaining about an unknown keyword of course).

  This ought to be backported to 2.5.2 or at least 2.6.
................
  r55724 | brett.cannon | 2007-05-31 19:32:41 -0700 (Thu, 31 May 2007) | 2 lines

  Remove the cfmfile.
................
  r55727 | neal.norwitz | 2007-05-31 22:19:44 -0700 (Thu, 31 May 2007) | 1 line

  Remove reload() builtin.
................
  r55729 | neal.norwitz | 2007-05-31 22:51:30 -0700 (Thu, 31 May 2007) | 59 lines

  Merged revisions 55636-55728 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r55637 | georg.brandl | 2007-05-29 00:16:47 -0700 (Tue, 29 May 2007) | 2 lines

    Fix rst markup.
  ........
    r55638 | neal.norwitz | 2007-05-29 00:51:39 -0700 (Tue, 29 May 2007) | 1 line

    Fix typo in doc
  ........
    r55671 | neal.norwitz | 2007-05-29 21:53:41 -0700 (Tue, 29 May 2007) | 1 line

    Fix indentation (whitespace only).
  ........
    r55676 | thomas.heller | 2007-05-29 23:58:30 -0700 (Tue, 29 May 2007) | 1 line

    Fix compiler warnings.
  ........
    r55677 | thomas.heller | 2007-05-30 00:01:25 -0700 (Wed, 30 May 2007) | 2 lines

    Correct the name of a field in the WIN32_FIND_DATAA and WIN32_FIND_DATAW structures.
    Closes bug #1726026.
  ........
    r55686 | brett.cannon | 2007-05-30 13:46:26 -0700 (Wed, 30 May 2007) | 2 lines

    Have MimeWriter raise a DeprecationWarning as per PEP 4 and its documentation.
  ........
    r55690 | brett.cannon | 2007-05-30 14:48:58 -0700 (Wed, 30 May 2007) | 3 lines

    Have mimify raise a DeprecationWarning.  The docs and PEP 4 have listed the
    module as deprecated for a while.
  ........
    r55696 | brett.cannon | 2007-05-30 15:24:28 -0700 (Wed, 30 May 2007) | 2 lines

    Have md5 raise a DeprecationWarning as per PEP 4.
  ........
    r55705 | neal.norwitz | 2007-05-30 21:14:22 -0700 (Wed, 30 May 2007) | 1 line

    Add some spaces in the example code.
  ........
    r55716 | brett.cannon | 2007-05-31 12:20:00 -0700 (Thu, 31 May 2007) | 2 lines

    Have the sha module raise a DeprecationWarning as specified in PEP 4.
  ........
    r55719 | brett.cannon | 2007-05-31 12:40:42 -0700 (Thu, 31 May 2007) | 2 lines

    Cause buildtools to raise a DeprecationWarning.
  ........
    r55721 | brett.cannon | 2007-05-31 13:01:11 -0700 (Thu, 31 May 2007) | 2 lines

    Have cfmfile raise a DeprecationWarning as per PEP 4.
  ........
    r55726 | neal.norwitz | 2007-05-31 21:56:47 -0700 (Thu, 31 May 2007) | 1 line

    Mail if there is an installation failure.
  ........
................
  r55730 | neal.norwitz | 2007-05-31 23:22:07 -0700 (Thu, 31 May 2007) | 2 lines

  Remove the code that was missed in rev 55303.
................
  r55738 | neal.norwitz | 2007-06-01 19:10:43 -0700 (Fri, 01 Jun 2007) | 1 line

  Fix doc breakage
................
  r55741 | neal.norwitz | 2007-06-02 00:41:58 -0700 (Sat, 02 Jun 2007) | 1 line

  Remove timing module (plus some remnants of other modules).
................
  r55742 | neal.norwitz | 2007-06-02 00:51:44 -0700 (Sat, 02 Jun 2007) | 1 line

  Remove posixfile module (plus some remnants of other modules).
................
  r55744 | neal.norwitz | 2007-06-02 10:18:56 -0700 (Sat, 02 Jun 2007) | 1 line

  Fix doc breakage.
................
  r55745 | neal.norwitz | 2007-06-02 11:32:16 -0700 (Sat, 02 Jun 2007) | 1 line

  Make a whatsnew 3.0 template.
................
  r55754 | neal.norwitz | 2007-06-03 23:24:18 -0700 (Sun, 03 Jun 2007) | 1 line

  SF #1730441, os._execvpe raises UnboundLocal due to new try/except semantics
................
  r55755 | neal.norwitz | 2007-06-03 23:26:00 -0700 (Sun, 03 Jun 2007) | 1 line

  Get rid of extra whitespace
................
  r55794 | guido.van.rossum | 2007-06-06 15:29:22 -0700 (Wed, 06 Jun 2007) | 3 lines

  Make this compile in GCC 2.96, which does not allow interspersing
  declarations and code.
................

17 years agoUse O_APPEND flag instead of seeking, when append
Walter Dörwald [Wed, 6 Jun 2007 16:55:38 +0000 (16:55 +0000)]
Use O_APPEND flag instead of seeking, when append
mode is specified.

17 years agoFix gzip.py: Use bytes where 8bit strings have been used formerly.
Walter Dörwald [Wed, 6 Jun 2007 16:43:59 +0000 (16:43 +0000)]
Fix gzip.py: Use bytes where 8bit strings have been used formerly.
(The filename gets written in utf-8 encoded form which probably
isn't correct.)

Fix the test.

17 years agoIf append mode is specified seek to the end of the file.
Walter Dörwald [Wed, 6 Jun 2007 16:31:14 +0000 (16:31 +0000)]
If append mode is specified seek to the end of the file.
Add a test to test_fileio.py for this.

17 years agoFix test_codeccallbacks.py: bytes has no % operator.
Walter Dörwald [Wed, 6 Jun 2007 15:17:22 +0000 (15:17 +0000)]
Fix test_codeccallbacks.py: bytes has no % operator.

17 years agoUse PyUnicode_FromFormat() directly.
Walter Dörwald [Wed, 6 Jun 2007 15:15:34 +0000 (15:15 +0000)]
Use PyUnicode_FromFormat() directly.

17 years agoChange sys.intern() so that unicode strings can be
Walter Dörwald [Tue, 5 Jun 2007 20:22:04 +0000 (20:22 +0000)]
Change sys.intern() so that unicode strings can be
interned too. Add a test for this.

17 years agoChange getdefaultencoding() and getfilesystemencoding()
Walter Dörwald [Tue, 5 Jun 2007 20:15:52 +0000 (20:15 +0000)]
Change getdefaultencoding() and getfilesystemencoding()
to return unicode strings.

17 years agoMake the name of the C variables match the Python names
Walter Dörwald [Tue, 5 Jun 2007 20:07:21 +0000 (20:07 +0000)]
Make the name of the C variables match the Python names
for chr()/chr8(). Fix function name in PyArg_ParseTuple()
call.

17 years agounichr() is named chr() now => fix name in error message.
Walter Dörwald [Tue, 5 Jun 2007 20:02:26 +0000 (20:02 +0000)]
unichr() is named chr() now => fix name in error message.

17 years agoChange int_oct() and int_hex() to return unicode objects.
Walter Dörwald [Tue, 5 Jun 2007 19:50:53 +0000 (19:50 +0000)]
Change int_oct() and int_hex() to return unicode objects.

17 years agoUse PyUnicode_FromFormat() directly in
Walter Dörwald [Tue, 5 Jun 2007 16:19:33 +0000 (16:19 +0000)]
Use PyUnicode_FromFormat() directly in
zipimporter_repr().

17 years agoChange category(), bidirectional(), east_asian_width(),
Walter Dörwald [Tue, 5 Jun 2007 16:04:09 +0000 (16:04 +0000)]
Change category(), bidirectional(), east_asian_width(),
decomposition() and name() to return unicode strings.

17 years agoSimplify os_init() implementations by using PyErr_Format()
Walter Dörwald [Tue, 5 Jun 2007 13:49:43 +0000 (13:49 +0000)]
Simplify os_init() implementations by using PyErr_Format()
directly instead of PyOS_snprintf()+PyErr_SetString().

17 years agoRemove unused variable.
Walter Dörwald [Tue, 5 Jun 2007 13:48:11 +0000 (13:48 +0000)]
Remove unused variable.

17 years agoSimplify socket_repr() by using PyUnicode_FromFormat()
Walter Dörwald [Tue, 5 Jun 2007 13:41:53 +0000 (13:41 +0000)]
Simplify socket_repr() by using PyUnicode_FromFormat()
directly. Add a test that calls socket_repr().

17 years agoPyUnicode_FromFormat() does support %02x, so use it
Walter Dörwald [Tue, 5 Jun 2007 13:29:29 +0000 (13:29 +0000)]
PyUnicode_FromFormat() does support %02x, so use it
for formatting the unicode decoding/encoding/translating
exception messages.

17 years agoChange time.strftime() to return a unicode string.
Walter Dörwald [Thu, 31 May 2007 19:23:17 +0000 (19:23 +0000)]
Change time.strftime() to return a unicode string.

Use PyMem_Malloc() to allocate temporary storage.

17 years agoChange timedelta.__str__() to return a unicode object.
Walter Dörwald [Thu, 31 May 2007 18:42:47 +0000 (18:42 +0000)]
Change timedelta.__str__() to return a unicode object.

17 years agoChange isoformat() methods to return unicode strings.
Walter Dörwald [Thu, 31 May 2007 17:50:48 +0000 (17:50 +0000)]
Change isoformat() methods to return unicode strings.

17 years agoChange format_ctime() to return unicode (i.e.
Walter Dörwald [Thu, 31 May 2007 16:19:50 +0000 (16:19 +0000)]
Change format_ctime() to return unicode (i.e.
date.ctime() and datetime.ctime() return unicode now).

17 years agoChange float.__str__() and complex.__str__() to return
Walter Dörwald [Thu, 31 May 2007 15:51:35 +0000 (15:51 +0000)]
Change float.__str__() and complex.__str__() to return
unicode objects.

17 years agoAdd support for width, precision and zeropadding to the %d, %i, %u and %x
Walter Dörwald [Thu, 31 May 2007 10:44:43 +0000 (10:44 +0000)]
Add support for width, precision and zeropadding to the %d, %i, %u and %x
format specifiers in PyUnicode_FromFormat().

Change unicode's tp_str implementation to return a unicode object.

17 years agoAdd a helper to display the various flags and components of code objects
Guido van Rossum [Wed, 30 May 2007 02:07:00 +0000 (02:07 +0000)]
Add a helper to display the various flags and components of code objects
(everything besides the actual code disassembly).

17 years agoFix test_openpty.
Guido van Rossum [Wed, 30 May 2007 00:58:53 +0000 (00:58 +0000)]
Fix test_openpty.

17 years agotypes.StringType is gone, use str directly instead.
Walter Dörwald [Tue, 29 May 2007 19:31:48 +0000 (19:31 +0000)]
types.StringType is gone, use str directly instead.

17 years agoRemove debug print.
Walter Dörwald [Tue, 29 May 2007 19:18:28 +0000 (19:18 +0000)]
Remove debug print.

17 years agoFix typo.
Walter Dörwald [Tue, 29 May 2007 19:13:29 +0000 (19:13 +0000)]
Fix typo.

17 years agoFix test_pty.py.
Walter Dörwald [Tue, 29 May 2007 18:57:42 +0000 (18:57 +0000)]
Fix test_pty.py.

17 years agoFix file test.
Walter Dörwald [Tue, 29 May 2007 18:51:25 +0000 (18:51 +0000)]
Fix file test.

17 years agoMerged revisions 55588-55630 via svnmerge from
Guido van Rossum [Tue, 29 May 2007 00:39:44 +0000 (00:39 +0000)]
Merged revisions 55588-55630 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

........
  r55598 | neal.norwitz | 2007-05-26 10:44:02 +0800 (Sat, 26 May 2007) | 1 line

  Fix refleak on infinite recursion
........
  r55599 | neal.norwitz | 2007-05-26 10:47:45 +0800 (Sat, 26 May 2007) | 1 line

  Add news entry about overidding isinstance/issubclass (PEP 3119)
........
  r55629 | brett.cannon | 2007-05-29 08:06:59 +0800 (Tue, 29 May 2007) | 3 lines

  Delete the cstubs module.  Used as input to Modules/cgen.py to generate the gl
  module which has already been removed.
........

17 years agoGet rid of a test for repr() of a file object.
Guido van Rossum [Sun, 27 May 2007 09:21:59 +0000 (09:21 +0000)]
Get rid of a test for repr() of a file object.

17 years agoModernize. Values are now bytes.
Guido van Rossum [Sun, 27 May 2007 09:21:20 +0000 (09:21 +0000)]
Modernize.  Values are now bytes.

17 years agoMake the binhex test pass on Darwin.
Guido van Rossum [Sun, 27 May 2007 09:20:49 +0000 (09:20 +0000)]
Make the binhex test pass on Darwin.
Grr.  Do we really want to support this module?

17 years agoRemove use of types.StringType.
Guido van Rossum [Sun, 27 May 2007 09:20:14 +0000 (09:20 +0000)]
Remove use of types.StringType.

17 years agoUse input(), not our own fake raw input (in one place).
Guido van Rossum [Sun, 27 May 2007 09:19:52 +0000 (09:19 +0000)]
Use input(), not our own fake raw input (in one place).

17 years agoMake struct tests pass.
Guido van Rossum [Sun, 27 May 2007 09:19:04 +0000 (09:19 +0000)]
Make struct tests pass.

17 years agoMake xmlrpclib fail less (test_sundry passes).
Guido van Rossum [Sun, 27 May 2007 09:17:48 +0000 (09:17 +0000)]
Make xmlrpclib fail less (test_sundry passes).

17 years agoAdd isatty() to TextIOWrapper.
Guido van Rossum [Sun, 27 May 2007 09:14:51 +0000 (09:14 +0000)]
Add isatty() to TextIOWrapper.

17 years agoMake input9) behave properly with the new I/O library.
Guido van Rossum [Sun, 27 May 2007 09:13:28 +0000 (09:13 +0000)]
Make input9) behave properly with the new I/O library.

17 years agoChange tp_str implementations of exception classes
Walter Dörwald [Sat, 26 May 2007 15:03:32 +0000 (15:03 +0000)]
Change tp_str implementations of exception classes
to return unicode strings.

17 years agoMinimal fixes to save the bootstrap on OSX.
Guido van Rossum [Fri, 25 May 2007 18:39:29 +0000 (18:39 +0000)]
Minimal fixes to save the bootstrap on OSX.

17 years agoMerged revisions 55545-55587 via svnmerge from
Guido van Rossum [Fri, 25 May 2007 17:55:52 +0000 (17:55 +0000)]
Merged revisions 55545-55587 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

........
  r55587 | guido.van.rossum | 2007-05-25 10:37:01 -0700 (Fri, 25 May 2007) | 2 lines

  Implement isinstance and issubclass overriding, a la PEP 3119.
........

17 years agoChange PyErr_Format() to generate a unicode string (by using
Walter Dörwald [Fri, 25 May 2007 15:46:59 +0000 (15:46 +0000)]
Change PyErr_Format() to generate a unicode string (by using
PyUnicode_FromFormatV() instead of PyString_FromFormatV()).

Change calls to PyErr_Format() to benefit from the new format
specifiers: Using %S, object instead of %s, PyString_AS_STRING(object)
with will work with unicode objects too.

17 years agoDocument the existence of PyUnicode_InternInPlace() and
Walter Dörwald [Fri, 25 May 2007 14:14:31 +0000 (14:14 +0000)]
Document the existence of PyUnicode_InternInPlace() and
PyUnicode_InternFromString().

17 years agoAdd interning of unicode strings by copying the functionality from
Walter Dörwald [Fri, 25 May 2007 13:52:07 +0000 (13:52 +0000)]
Add interning of unicode strings by copying the functionality from
stringobject.c.

Intern "True" and "False" in bool_repr() again as it was in the
8bit string era.

17 years agoThis is the last time I fix binhex. If it breaks again it goes in the dustbin.
Guido van Rossum [Thu, 24 May 2007 22:05:19 +0000 (22:05 +0000)]
This is the last time I fix binhex.  If it breaks again it goes in the dustbin.

17 years agoSimplify %U handling by using Py_UNICODE_COPY.
Walter Dörwald [Thu, 24 May 2007 19:51:02 +0000 (19:51 +0000)]
Simplify %U handling by using Py_UNICODE_COPY.

17 years agoFix typo.
Walter Dörwald [Thu, 24 May 2007 19:10:53 +0000 (19:10 +0000)]
Fix typo.

17 years agoFixed array.fromfile(); removed references to PyFileObject in array.tofile().
Guido van Rossum [Thu, 24 May 2007 19:02:32 +0000 (19:02 +0000)]
Fixed array.fromfile(); removed references to PyFileObject in array.tofile().
Fixed test_array by removing tests that these two functions don't work
with cStringIO objects (which makes no sense).

17 years agoDon't specify an encoding, let open figure out an
Walter Dörwald [Thu, 24 May 2007 18:05:27 +0000 (18:05 +0000)]
Don't specify an encoding, let open figure out an
appropriate one.