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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

17 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

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

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

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

17 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?)

17 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?!?).

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

17 years agoobcheckin.
Guido van Rossum [Tue, 22 May 2007 18:28:08 +0000 (18:28 +0000)]
obcheckin.

17 years agoMerged revisions 55407-55513 via svnmerge from
Guido van Rossum [Tue, 22 May 2007 18:11:13 +0000 (18:11 +0000)]
Merged revisions 55407-55513 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

................
  r55413 | fred.drake | 2007-05-17 12:30:10 -0700 (Thu, 17 May 2007) | 1 line

  fix argument name in documentation; match the implementation
................
  r55430 | jack.diederich | 2007-05-18 06:39:59 -0700 (Fri, 18 May 2007) | 1 line

  Implements class decorators, PEP 3129.
................
  r55432 | guido.van.rossum | 2007-05-18 08:09:41 -0700 (Fri, 18 May 2007) | 2 lines

  obsubmit.
................
  r55434 | guido.van.rossum | 2007-05-18 09:39:10 -0700 (Fri, 18 May 2007) | 3 lines

  Fix bug in test_inspect.  (I presume this is how it should be fixed;
  Jack Diedrich, please verify.)
................
  r55460 | brett.cannon | 2007-05-20 00:31:57 -0700 (Sun, 20 May 2007) | 4 lines

  Remove the imageop module.  With imgfile already removed in Python 3.0 and
  rgbimg gone in Python 2.6 the unit tests themselves were made worthless.  Plus
  third-party libraries perform the same function much better.
................
  r55469 | neal.norwitz | 2007-05-20 11:28:20 -0700 (Sun, 20 May 2007) | 118 lines

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

  ........
    r55348 | georg.brandl | 2007-05-15 13:19:34 -0700 (Tue, 15 May 2007) | 4 lines

    HTML-escape the plain traceback in cgitb's HTML output, to prevent
    the traceback inadvertently or maliciously closing the comment and
    injecting HTML into the error page.
  ........
    r55372 | neal.norwitz | 2007-05-15 21:33:50 -0700 (Tue, 15 May 2007) | 6 lines

    Port rev 55353 from Guido:
    Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()
    fails.

    Will backport.
  ........
    r55377 | neal.norwitz | 2007-05-15 22:06:33 -0700 (Tue, 15 May 2007) | 1 line

    Mention removal of some directories for obsolete platforms
  ........
    r55380 | brett.cannon | 2007-05-15 22:50:03 -0700 (Tue, 15 May 2007) | 2 lines

    Change the maintainer of the BeOS port.
  ........
    r55383 | georg.brandl | 2007-05-16 06:44:18 -0700 (Wed, 16 May 2007) | 2 lines

    Bug #1719995: don't use deprecated method in sets example.
  ........
    r55386 | neal.norwitz | 2007-05-16 13:05:11 -0700 (Wed, 16 May 2007) | 5 lines

    Fix bug in marshal where bad data would cause a segfault due to
    lack of an infinite recursion check.

    Contributed by Damien Miller at Google.
  ........
    r55389 | brett.cannon | 2007-05-16 15:42:29 -0700 (Wed, 16 May 2007) | 6 lines

    Remove the gopherlib module.  It has been raising a DeprecationWarning since
    Python 2.5.

    Also remove gopher support from urllib/urllib2.  As both imported gopherlib the
    usage of the support would have raised a DeprecationWarning.
  ........
    r55394 | raymond.hettinger | 2007-05-16 18:08:04 -0700 (Wed, 16 May 2007) | 1 line

    calendar.py gets no benefit from xrange() instead of range()
  ........
    r55395 | brett.cannon | 2007-05-16 19:02:56 -0700 (Wed, 16 May 2007) | 3 lines

    Complete deprecation of BaseException.message.  Some subclasses were directly
    accessing the message attribute instead of using the descriptor.
  ........
    r55396 | neal.norwitz | 2007-05-16 23:11:36 -0700 (Wed, 16 May 2007) | 4 lines

    Reduce the max stack depth to see if this fixes the segfaults on
    Windows and some other boxes.  If this is successful, this rev should
    be backported.  I'm not sure how close to the limit we should push this.
  ........
    r55397 | neal.norwitz | 2007-05-16 23:23:50 -0700 (Wed, 16 May 2007) | 4 lines

    Set the depth to something very small to try to determine if the
    crashes on Windows are really due to the stack size or possibly
    some other problem.
  ........
    r55398 | neal.norwitz | 2007-05-17 00:04:46 -0700 (Thu, 17 May 2007) | 4 lines

    Last try for tweaking the max stack depth.  5000 was the original value,
    4000 didn't work either.  1000 does work on Windows.  If 2000 works,
    that will hopefully be a reasonable balance.
  ........
    r55412 | fred.drake | 2007-05-17 12:29:58 -0700 (Thu, 17 May 2007) | 1 line

    fix argument name in documentation; match the implementation
  ........
    r55427 | neal.norwitz | 2007-05-17 22:47:16 -0700 (Thu, 17 May 2007) | 1 line

    Verify neither dumps or loads overflow the stack and segfault.
  ........
    r55446 | collin.winter | 2007-05-18 16:11:24 -0700 (Fri, 18 May 2007) | 1 line

    Backport PEP 3110's new 'except' syntax to 2.6.
  ........
    r55448 | raymond.hettinger | 2007-05-18 18:11:16 -0700 (Fri, 18 May 2007) | 1 line

    Improvements to NamedTuple's implementation, tests, and documentation
  ........
    r55449 | raymond.hettinger | 2007-05-18 18:50:11 -0700 (Fri, 18 May 2007) | 1 line

    Fix beginner mistake -- don't mix spaces and tabs.
  ........
    r55450 | neal.norwitz | 2007-05-18 20:48:47 -0700 (Fri, 18 May 2007) | 1 line

    Clear data so random memory does not get freed.  Will backport.
  ........
    r55452 | neal.norwitz | 2007-05-18 21:34:55 -0700 (Fri, 18 May 2007) | 3 lines

    Whoops, need to pay attention to those test failures.
    Move the clear to *before* the first use, not after.
  ........
    r55453 | neal.norwitz | 2007-05-18 21:35:52 -0700 (Fri, 18 May 2007) | 1 line

    Give some clue as to what happened if the test fails.
  ........
    r55455 | georg.brandl | 2007-05-19 11:09:26 -0700 (Sat, 19 May 2007) | 2 lines

    Fix docstring for add_package in site.py.
  ........
    r55458 | brett.cannon | 2007-05-20 00:09:50 -0700 (Sun, 20 May 2007) | 2 lines

    Remove the rgbimg module.  It has been deprecated since Python 2.5.
  ........
    r55465 | nick.coghlan | 2007-05-20 04:12:49 -0700 (Sun, 20 May 2007) | 1 line

    Fix typo in example (should be backported, but my maintenance branch is woefully out of date)
  ........
................
  r55472 | brett.cannon | 2007-05-20 12:06:18 -0700 (Sun, 20 May 2007) | 2 lines

  Remove imageop from the Windows build process.
................
  r55486 | neal.norwitz | 2007-05-20 23:59:52 -0700 (Sun, 20 May 2007) | 1 line

  Remove callable() builtin
................
  r55506 | neal.norwitz | 2007-05-22 00:43:29 -0700 (Tue, 22 May 2007) | 78 lines

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

  ........
    r55468 | neal.norwitz | 2007-05-20 11:06:27 -0700 (Sun, 20 May 2007) | 1 line

    rotor is long gone.
  ........
    r55470 | neal.norwitz | 2007-05-20 11:43:00 -0700 (Sun, 20 May 2007) | 1 line

    Update directories/files at the top-level.
  ........
    r55471 | brett.cannon | 2007-05-20 12:05:06 -0700 (Sun, 20 May 2007) | 2 lines

    Try to remove rgbimg from Windows builds.
  ........
    r55474 | brett.cannon | 2007-05-20 16:17:38 -0700 (Sun, 20 May 2007) | 4 lines

    Remove the macfs module.  This led to the deprecation of macostools.touched();
    it completely relied on macfs and is a no-op on OS X according to code
    comments.
  ........
    r55476 | brett.cannon | 2007-05-20 16:56:18 -0700 (Sun, 20 May 2007) | 3 lines

    Move imgfile import to the global namespace to trigger an import error ASAP to
    prevent creation of a test file.
  ........
    r55477 | brett.cannon | 2007-05-20 16:57:38 -0700 (Sun, 20 May 2007) | 3 lines

    Cause posixfile to raise a DeprecationWarning.  Documented as deprecated since
    Ptyhon 1.5.
  ........
    r55479 | andrew.kuchling | 2007-05-20 17:03:15 -0700 (Sun, 20 May 2007) | 1 line

    Note removed modules
  ........
    r55481 | martin.v.loewis | 2007-05-20 21:35:47 -0700 (Sun, 20 May 2007) | 2 lines

    Add Alexandre Vassalotti.
  ........
    r55482 | george.yoshida | 2007-05-20 21:41:21 -0700 (Sun, 20 May 2007) | 4 lines

    fix against r55474 [Remove the macfs module]

    Remove "libmacfs.tex" from Makefile.deps and mac/mac.tex.
  ........
    r55487 | raymond.hettinger | 2007-05-21 01:13:35 -0700 (Mon, 21 May 2007) | 1 line

    Replace assertion with straight error-checking.
  ........
    r55489 | raymond.hettinger | 2007-05-21 09:40:10 -0700 (Mon, 21 May 2007) | 1 line

    Allow all alphanumeric and underscores in type and field names.
  ........
    r55490 | facundo.batista | 2007-05-21 10:32:32 -0700 (Mon, 21 May 2007) | 5 lines

    Added timeout support to HTTPSConnection, through the
    socket.create_connection function. Also added a small
    test for this, and updated NEWS file.
  ........
    r55495 | georg.brandl | 2007-05-21 13:34:16 -0700 (Mon, 21 May 2007) | 2 lines

    Patch #1686487: you can now pass any mapping after '**' in function calls.
  ........
    r55502 | neal.norwitz | 2007-05-21 23:03:36 -0700 (Mon, 21 May 2007) | 1 line

    Document new params to HTTPSConnection
  ........
    r55504 | neal.norwitz | 2007-05-22 00:16:10 -0700 (Tue, 22 May 2007) | 1 line

    Stop using METH_OLDARGS
  ........
    r55505 | neal.norwitz | 2007-05-22 00:16:44 -0700 (Tue, 22 May 2007) | 1 line

    Stop using METH_OLDARGS implicitly
  ........
................

17 years agoThere's no need to default file to sys.stdout -- print(file=None) already
Guido van Rossum [Tue, 22 May 2007 18:01:30 +0000 (18:01 +0000)]
There's no need to default file to sys.stdout -- print(file=None) already
selects sys.stdout.

17 years agoThe HTMLCalendar outputs bytes now, so fix the test
Walter Dörwald [Tue, 22 May 2007 17:03:39 +0000 (17:03 +0000)]
The HTMLCalendar outputs bytes now, so fix the test
accordingly (bytes.strip() always requires an argument).

17 years agoRemove have_unicode checks and merge those tests into the
Walter Dörwald [Tue, 22 May 2007 16:52:54 +0000 (16:52 +0000)]
Remove have_unicode checks and merge those tests into the
normal code (or drop them if they only repeat previous
tests).