]> granicus.if.org Git - python/log
python
18 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.

18 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.

18 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.

18 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.

18 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.

18 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)).

18 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).

18 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.

18 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).

18 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.

18 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.

18 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.

18 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.
........

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

18 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).

18 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.

18 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).

18 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).

18 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.

18 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.

18 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.

18 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.

18 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.

18 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.

18 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.
................

18 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.

18 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.

18 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.

18 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.

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

18 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.

18 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.

18 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.

18 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.

18 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.

18 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().

18 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.

18 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().

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

18 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().

18 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.

18 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.

18 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.

18 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.

18 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).

18 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.

18 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.

18 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).

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

18 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.

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

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

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

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

18 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.
........

18 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.

18 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.

18 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?

18 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.

18 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).

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

18 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).

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

18 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.

18 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.

18 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.

18 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.
........

18 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.

18 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().

18 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.

18 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.

18 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.

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

18 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).

18 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.

18 years agoFix test_set.
Guido van Rossum [Thu, 24 May 2007 18:00:35 +0000 (18:00 +0000)]
Fix test_set.

18 years agoAdd an encoding property to TextIOBase instances.
Guido van Rossum [Thu, 24 May 2007 17:58:06 +0000 (17:58 +0000)]
Add an encoding property to TextIOBase instances.
Add sys.__std{in,out,err}__.
Make test_sys pass.

18 years agoFix tset_bytes.py.
Guido van Rossum [Thu, 24 May 2007 17:52:00 +0000 (17:52 +0000)]
Fix tset_bytes.py.

18 years agoFix test_exceptions.py: There were still str8 objects
Walter Dörwald [Thu, 24 May 2007 17:49:56 +0000 (17:49 +0000)]
Fix test_exceptions.py: There were still str8 objects
in the UnicodeError constructor tests, but the
constructors take str arguments now.

18 years agoLink _fileio statically -- it is needed during initialization.
Guido van Rossum [Thu, 24 May 2007 17:45:19 +0000 (17:45 +0000)]
Link _fileio statically -- it is needed during initialization.

18 years agoFix list_test.py::test_print(): Read and write the
Walter Dörwald [Thu, 24 May 2007 17:44:33 +0000 (17:44 +0000)]
Fix list_test.py::test_print(): Read and write the
file in text mode, so the file content comes back
as str not bytes.

18 years agoFix test_funcattrs.py: __name__ attribute must be str8.
Walter Dörwald [Thu, 24 May 2007 17:34:27 +0000 (17:34 +0000)]
Fix test_funcattrs.py: __name__ attribute must be str8.

18 years agoFix test_bool and test_bufio.
Guido van Rossum [Thu, 24 May 2007 16:11:18 +0000 (16:11 +0000)]
Fix test_bool and test_bufio.

18 years agoEnable new I/O. Disable creation of old files.
Guido van Rossum [Thu, 24 May 2007 14:31:33 +0000 (14:31 +0000)]
Enable new I/O.  Disable creation of old files.
Lots of stuff fails now, including -S and -m command line flags.

18 years agoMake test_subprocess work. Fix universal newlines in io.py.
Guido van Rossum [Thu, 24 May 2007 04:05:35 +0000 (04:05 +0000)]
Make test_subprocess work.  Fix universal newlines in io.py.

18 years agoMerged revisions 55514-55544 via svnmerge from
Guido van Rossum [Thu, 24 May 2007 02:27:17 +0000 (02:27 +0000)]
Merged revisions 55514-55544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

........
  r55526 | neal.norwitz | 2007-05-22 23:42:22 -0700 (Tue, 22 May 2007) | 1 line

  reduce was removed a while ago
........
  r55544 | guido.van.rossum | 2007-05-23 19:23:53 -0700 (Wed, 23 May 2007) | 2 lines

  Fix test_inspect.  It seems my previous "fix" was due to a stale .pyc file.
........

18 years agoRemove native popen() and fdopen(), replacing them with subprocess calls.
Guido van Rossum [Thu, 24 May 2007 00:50:02 +0000 (00:50 +0000)]
Remove native popen() and fdopen(), replacing them with subprocess calls.
Fix a path to an assert in fileio_read().
Some misc tweaks.

18 years agoRefactor to avoid ultra-deeply-nested code.
Guido van Rossum [Wed, 23 May 2007 21:36:49 +0000 (21:36 +0000)]
Refactor to avoid ultra-deeply-nested code.

18 years agoFix datetime and its test.
Guido van Rossum [Wed, 23 May 2007 21:24:35 +0000 (21:24 +0000)]
Fix datetime and its test.

18 years agoAdd a format character %S to PyUnicode_FromFormat() that
Walter Dörwald [Wed, 23 May 2007 21:02:42 +0000 (21:02 +0000)]
Add a format character %S to PyUnicode_FromFormat() that
embeds the result of PyObject_Unicode() into the resulting
unicode string.

18 years agoMake gdbm and dumbdbm use byte strings. Updated their tests.
Guido van Rossum [Wed, 23 May 2007 20:51:02 +0000 (20:51 +0000)]
Make gdbm and dumbdbm use byte strings.  Updated their tests.

18 years agoSimplify append_keyword_tzinfo() by using
Walter Dörwald [Wed, 23 May 2007 20:45:05 +0000 (20:45 +0000)]
Simplify append_keyword_tzinfo() by using
PyUnicode_FromFormat().

18 years agoFix test_unicodedata.py.
Walter Dörwald [Wed, 23 May 2007 20:11:33 +0000 (20:11 +0000)]
Fix test_unicodedata.py.

18 years agoFix testcodec.py and test_charmapcodec.py
Walter Dörwald [Wed, 23 May 2007 19:00:48 +0000 (19:00 +0000)]
Fix testcodec.py and test_charmapcodec.py

18 years agoThis is how I run the tests.
Guido van Rossum [Wed, 23 May 2007 17:28:08 +0000 (17:28 +0000)]
This is how I run the tests.

18 years agobz2 uses bytes everywhere (even for the 'newlines' attribute).
Guido van Rossum [Tue, 22 May 2007 23:13:45 +0000 (23:13 +0000)]
bz2 uses bytes everywhere (even for the 'newlines' attribute).
test_bz2 passes.

18 years agozlib now uses bytes everywhere, and the test passes.
Guido van Rossum [Tue, 22 May 2007 22:44:07 +0000 (22:44 +0000)]
zlib now uses bytes everywhere, and the test passes.

18 years agoMake test_binhex pass. (Do we really want to support it still?)
Guido van Rossum [Tue, 22 May 2007 22:25:42 +0000 (22:25 +0000)]
Make test_binhex pass.  (Do we really want to support it still?)

18 years agoMake test_base64 pass.
Guido van Rossum [Tue, 22 May 2007 21:56:47 +0000 (21:56 +0000)]
Make test_base64 pass.
Change binascii.Error to derive from ValueError
and raise binascii.Error everywhere where values are bad
(why on earth did the old code use TypeError?!?).

18 years agoMake binascii use byte strings everywhere (in and out).
Guido van Rossum [Tue, 22 May 2007 20:24:57 +0000 (20:24 +0000)]
Make binascii use byte strings everywhere (in and out).