1. 20 Mar, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 via svnmerge from · e25f35ec
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61644 | trent.nelson | 2008-03-19 22:51:16 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Force a clean of the tcltk/tcltk64 directories now that we've completely changed the tcl/tk build environment.
      ........
        r61646 | gregory.p.smith | 2008-03-19 23:23:51 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Improve the error message when the CRCs don't match.
      ........
        r61647 | trent.nelson | 2008-03-19 23:41:10 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Comment out tcltk/tcltk64 removal.
      ........
        r61649 | raymond.hettinger | 2008-03-19 23:47:48 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Remove unnecessary traceback save/restore pair.
      ........
        r61650 | trent.nelson | 2008-03-19 23:51:42 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to see if it fixes the alarm failures in this test experienced by some of the buildbots.
      ........
        r61651 | brett.cannon | 2008-03-20 00:01:17 +0100 (Do, 20 Mär 2008) | 5 lines
      
        Make sure that the warnings filter is not reset or changed beyond the current
        running test file.
      
        Closes issue2407. Thanks Jerry Seutter.
      ........
        r61652 | gregory.p.smith | 2008-03-20 00:03:25 +0100 (Do, 20 Mär 2008) | 10 lines
      
        Prevent ioctl op codes from being sign extended from int to unsigned long
        when used on platforms that actually define ioctl as taking an unsigned long.
        (the BSDs and OS X / Darwin)
      
        Adds a unittest for fcntl.ioctl that tests what happens with both positive and
        negative numbers.
      
        This was done because of issue1471 but I'm not able to reproduce -that- problem
        in the first place on Linux 32bit or 64bit or OS X 10.4 & 10.5 32bit or 64 bit.
      ........
        r61656 | sean.reifschneider | 2008-03-20 01:46:50 +0100 (Do, 20 Mär 2008) | 2 lines
      
        Issue #2143: Fix embedded readline() hang on SSL socket EOF.
      ........
        r61657 | sean.reifschneider | 2008-03-20 01:50:07 +0100 (Do, 20 Mär 2008) | 2 lines
      
        Forgot to add NEWS item about smtplib SSL readline hang fix.
      ........
        r61658 | trent.nelson | 2008-03-20 01:58:44 +0100 (Do, 20 Mär 2008) | 1 line
      
        Revert r61650; the intent of this commit was to try and address alarm failures on some of the build slaves.  As Neal points out, it's called after test_main(), so it's not going to factor into the test when run via regrtest.py (and removes the original functionality that Jeffrey wanted that would kill the test if it took longer than 3 seconds to run when executing it directly during development).
      ........
        r61663 | sean.reifschneider | 2008-03-20 04:20:48 +0100 (Do, 20 Mär 2008) | 2 lines
      
        Issue 2188: Documentation hint about disabling proxy detection.
      ........
        r61665 | gregory.p.smith | 2008-03-20 06:41:53 +0100 (Do, 20 Mär 2008) | 7 lines
      
        Attempt to fix the Solaris Sparc 10 buildbot.  It was failing with an invalid
        argument error on ioctl.  This was caused by the added test_fcntl ioctl test
        that hard coded 0 as the fd to use.  Without a terminal, this fails on solaris.
        (it passed from the command line on sol 10, both 32 and 64 bit)
      
        Also, test_ioctl exists so I moved the test into there where it belongs.
      ........
        r61667 | georg.brandl | 2008-03-20 08:25:55 +0100 (Do, 20 Mär 2008) | 2 lines
      
        #2383: remove obsolete XXX comment in stat.py.
      ........
      e25f35ec
    • Gregory P. Smith's avatar
  2. 19 Mar, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it… · 453e08c3
      Christian Heimes yazdı
      Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it fixes the unit tests and doesn't create a different hash than Python 2.x
      453e08c3
    • Christian Heimes's avatar
      Merged revisions… · d5e2b6f3
      Christian Heimes yazdı
      Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61538 | steven.bethard | 2008-03-18 20:03:50 +0100 (Di, 18 Mär 2008) | 1 line
      
        cell_compare needs to return -2 instead of NULL.
      ........
        r61539 | steven.bethard | 2008-03-18 20:04:32 +0100 (Di, 18 Mär 2008) | 1 line
      
        _have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that.
      ........
        r61540 | gregory.p.smith | 2008-03-18 20:05:32 +0100 (Di, 18 Mär 2008) | 8 lines
      
        Fix chown on 64-bit linux.  It needed to take a long (64-bit on 64bit linux) as
        uid and gid input to accept values >=2**31 as valid while still accepting
        negative numbers to pass -1 to chown for "no change".
      
        Fixes issue1747858.
      
        This should be backported to release25-maint.
      ........
        r61556 | steven.bethard | 2008-03-18 20:59:14 +0100 (Di, 18 Mär 2008) | 1 line
      
        Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.)
      ........
        r61559 | neal.norwitz | 2008-03-18 21:30:38 +0100 (Di, 18 Mär 2008) | 1 line
      
        Import the test properly.  This is especially important for py3k.
      ........
        r61560 | gregory.p.smith | 2008-03-18 21:40:01 +0100 (Di, 18 Mär 2008) | 2 lines
      
        news entry for the chown fix
      ........
        r61563 | brett.cannon | 2008-03-18 22:12:42 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Ignore BIG5HKSCS-2004.TXT which is downloaded as part of a test.
      ........
        r61565 | steven.bethard | 2008-03-18 22:30:13 +0100 (Di, 18 Mär 2008) | 1 line
      
        Have regrtest skip test_py3kwarn when the -3 flag is missing.
      ........
        r61571 | gregory.p.smith | 2008-03-18 23:27:41 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.
        Fix a buglet in binascii.crc32, the second optional argument could previously
        have a signedness mismatch with the C variable its going into.
      ........
        r61575 | raymond.hettinger | 2008-03-19 00:22:29 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Speed-up isinstance() for one easy case.
      ........
        r61576 | raymond.hettinger | 2008-03-19 00:33:08 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted().
      ........
        r61580 | andrew.kuchling | 2008-03-19 02:05:35 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Add Jeff Rush
      ........
        r61581 | gregory.p.smith | 2008-03-19 02:38:35 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Mention that crc32 and adler32 are available in a different module (zlib).
        Some people look for them in hashlib.
      ........
        r61582 | gregory.p.smith | 2008-03-19 02:46:10 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Use zlib's crc32 routine instead of binascii when available.  zlib's is faster
        when compiled properly optimized and about the same speed otherwise.
      ........
        r61586 | david.wolever | 2008-03-19 03:26:57 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Added my name to ACKS
      ........
        r61591 | gregory.p.smith | 2008-03-19 04:14:41 +0100 (Mi, 19 Mär 2008) | 5 lines
      
        Fix the struct module DeprecationWarnings that zipfile was triggering by
        removing all use of signed struct values.
      
        test_zipfile and test_zipfile64 pass.  no more warnings.
      ........
        r61593 | raymond.hettinger | 2008-03-19 04:56:59 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Fix compiler warning.
      ........
        r61595 | martin.v.loewis | 2008-03-19 05:39:13 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Issue #2400: Allow relative imports to "import *".
      ........
        r61605 | martin.v.loewis | 2008-03-19 07:00:28 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Import relimport using a relative import.
      ........
        r61606 | trent.nelson | 2008-03-19 07:28:24 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue2290: Support x64 Windows builds that live in pcbuild/amd64.  Without it, sysutils._python_build() returns the wrong directory, which causes the test_get_config_h_filename method in Lib/distutils/tests/test_sysconfig.py to fail.
      ........
        r61613 | trent.nelson | 2008-03-19 08:45:19 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Refine the Visual Studio 2008 build solution in order to improve how we deal with external components, as well as fixing outstanding issues with Windows x64 build support.  Introduce two new .vcproj files, _bsddb44.vcproj and sqlite3.vcproj, which replace the previous pre-link event scripts for _bsddb and _sqlite3 respectively.  The new project files inherit from our property files as if they were any other Python module.  This has numerous benefits.  First, the components get built with exactly the same compiler flags and settings as the rest of Python.  Second, it makes it much easier to debug problems in the external components when they're part of the build system.  Third, they'll benefit from profile guided optimisation in the release builds, just like the rest of Python core.
      
        I've also introduced a slightly new pattern for managing externals in subversion.  New components get checked in as <name>-<version>.x, where <version> matches the exact vendor version string.  After the initial import of the external component, the .x is tagged as .0 (i.e. tcl-8.4.18.x -> tcl-8.4.18.0).  Some components may not need any tweaking, whereas there are others that might (tcl/tk fall into this bucket).  In that case, the relevant modifications are made to the .x branch, which will be subsequently tagged as .1 (and then n+1 going forward) when they build successfully and all tests pass.  Buildbots will be converted to rely on these explicit tags only, which makes it easy for us to switch them over to a new version as and when required.  (Simple change to external(-amd64).bat: if we've bumped tcl to 8.4.18.1, change the .bat to rmdir 8.4.18.0 if it exists and check out a new .1 copy.)
      ........
        r61614 | trent.nelson | 2008-03-19 08:56:39 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories.
      ........
        r61615 | georg.brandl | 2008-03-19 08:56:40 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Remove footnote from versionchanged as it upsets LaTeX.
      ........
        r61616 | georg.brandl | 2008-03-19 08:57:57 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Another one.
      ........
        r61618 | trent.nelson | 2008-03-19 09:06:03 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Fix the tcl-8.4.18.1 path and make sure we cd into the right directory when building tcl/tk.
      ........
        r61621 | trent.nelson | 2008-03-19 10:23:08 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Lets have another try at getting the Windows buildbots in a consistent state before rebuilding using the new process.
      ........
        r61622 | eric.smith | 2008-03-19 13:09:55 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Use test.test_support.captured_stdout instead of a custom contextmanager.
        Thanks Nick Coghlan.
      ........
        r61623 | eric.smith | 2008-03-19 13:15:10 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Trivial typo.
      ........
        r61625 | thomas.heller | 2008-03-19 17:10:57 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Checkout sqlite-source when it is not there.
      ........
        r61627 | brett.cannon | 2008-03-19 17:50:13 +0100 (Mi, 19 Mär 2008) | 5 lines
      
        test_nis would fail if test.test_support.verbose was true but NIS was not set
        up on the machine.
      
        Closes issue2411. Thanks Michael Bishop.
      ........
        r61631 | brett.cannon | 2008-03-19 18:37:43 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Use sys.py3kwarning instead of trying to trigger a Py3k-related warning.
      ........
        r61632 | raymond.hettinger | 2008-03-19 18:45:19 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue 2354: Fix-up compare warning.  Patch contributed by Jeff Balogh.
      ........
        r61633 | raymond.hettinger | 2008-03-19 18:58:59 +0100 (Mi, 19 Mär 2008) | 1 line
      
        The filter() function does support a None argument in Py3.0.
      ........
        r61634 | raymond.hettinger | 2008-03-19 19:01:58 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Remove itertools warnings I had added before the 2-to-3 handled the migration.
      ........
      d5e2b6f3
  3. 18 Mar, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 61520,61523-61528,61532 via svnmerge from · ada8c3b0
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61520 | thomas.heller | 2008-03-18 16:03:17 +0100 (Di, 18 Mär 2008) | 5 lines
      
        Include <alloca.h> on Solaris, see issue #1506.
      
        It would probably be better to have a configure test for that, but
        this is outside of my configure expertise.
      ........
        r61523 | brett.cannon | 2008-03-18 16:35:58 +0100 (Di, 18 Mär 2008) | 5 lines
      
        Remove all traces of HAVE_STRERROR.
      
        The removal of strerror.c led to the function check being removed from
        configure.in.
      ........
        r61524 | brett.cannon | 2008-03-18 16:52:00 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Fix test_errno to only check for error numbers that are defined by Standard C.
      ........
        r61525 | steven.bethard | 2008-03-18 17:00:19 +0100 (Di, 18 Mär 2008) | 1 line
      
        Use test_support.unlink instead of os.unlink in tearDown().  (Seems to fix an occasional failure in Windows Vista.)
      ........
        r61526 | brett.cannon | 2008-03-18 17:47:51 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Cast the arguments to PyString_AsStringAndSize() to silence compiler warnings
        on OS X.
      ........
        r61527 | sean.reifschneider | 2008-03-18 18:24:12 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Issue 1577: shutil.move() where destination is a directory was doing a
        copy, now it is doing a os.rename() if it's on the same file-system.
      ........
        r61528 | brett.cannon | 2008-03-18 18:25:13 +0100 (Di, 18 Mär 2008) | 12 lines
      
        Add Tools/scripts/patchcheck.py. Invoked from ``make check``, the script does
        some verification:
      
        - Runs reindent.py on all .py files.
        - Checks if any changes in Doc exist.
        - Whether Misc/ACKS was changed.
        - Whether Misc/NEWS was changed.
      
        The hope is that ``make check`` can become a command anybody can run to get
        reminders about what all the requisite steps needed to create a proper
        patch/checkin.
      ........
        r61532 | neal.norwitz | 2008-03-18 18:58:02 +0100 (Di, 18 Mär 2008) | 1 line
      
        Get regrtest working when re-running tests
      ........
      ada8c3b0
    • Christian Heimes's avatar
      Merged revisions… · b186d008
      Christian Heimes yazdı
      Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61431 | vinay.sajip | 2008-03-16 22:35:58 +0100 (So, 16 Mär 2008) | 1 line
      
        Clarified documentation on use of shutdown().
      ........
        r61433 | mark.summerfield | 2008-03-17 09:28:15 +0100 (Mo, 17 Mär 2008) | 5 lines
      
        Added a footnote to each pointing out that for XML output if an encoding
        string is given it should conform to the appropriate XML standards---for
        example, "UTF-8" is okay, but "UTF8" is not.
      ........
        r61434 | eric.smith | 2008-03-17 12:01:01 +0100 (Mo, 17 Mär 2008) | 7 lines
      
        Issue 2264: empty float presentation type needs to have at least one digit past the decimal point.
      
        Added "Z" format_char to PyOS_ascii_formatd to support empty float presentation type.
        Renamed buf_size in PyOS_ascii_formatd to more accurately reflect it's meaning.
        Modified format.__float__ to use the new "Z" format as the default.
        Added test cases.
      ........
        r61435 | eric.smith | 2008-03-17 13:14:29 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Reformated lines > 79 chars.
        Deleted unused macro ISXDIGIT.
      ........
        r61436 | jeffrey.yasskin | 2008-03-17 15:40:53 +0100 (Mo, 17 Mär 2008) | 13 lines
      
        Allow Gnu gcc's to build python on OSX by removing -Wno-long-double,
        -no-cpp-precomp, and -mno-fused-madd from configure.
         * r22183 added -no-cpp-precomp, which
           http://gcc.gnu.org/ml/gcc/2005-12/msg00368.html claims hasn't been
           needed since gcc-3.1.
         * r25607 added -Wno-long-double to avoid a warning in
           Include/objimpl.h (issue 525481). The long double is still there,
           but OSX 10.4's gcc no longer warns about it.
         * r33666 fixed issue 775892 on OSX 10.3 by adding -mno-fused-madd,
           which changed the sign of some float 0s. Tim Peters said it wasn't
           a real issue anyway, and it no longer causes test failures.
        Fixes issue #1779871.
      ........
        r61439 | martin.v.loewis | 2008-03-17 17:31:57 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Add Trent Nelson.
      ........
        r61444 | travis.oliphant | 2008-03-17 18:36:12 +0100 (Mo, 17 Mär 2008) | 1 line
      
        Add necessary headers to back-port new buffer protocol to Python 2.6
      ........
        r61449 | gregory.p.smith | 2008-03-17 19:48:05 +0100 (Mo, 17 Mär 2008) | 8 lines
      
        Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms
        regardless of the native sizeof(long) used in the integer object.
      
        This somewhat odd behavior of returning a signed is maintained in 2.x for
        compatibility reasons of always returning an integer rather than a long object.
      
        Fixes Issue1202 for Python 2.6
      ........
        r61450 | neal.norwitz | 2008-03-17 20:02:45 +0100 (Mo, 17 Mär 2008) | 3 lines
      
        Use a buffer large enough to ensure we don't overrun, even if the value
        is outside the range we expect.
      ........
        r61453 | steven.bethard | 2008-03-17 20:33:11 +0100 (Mo, 17 Mär 2008) | 1 line
      
        Document unicode.isnumeric() and unicode.isdecimal() (issue2326)
      ........
        r61458 | neal.norwitz | 2008-03-17 21:22:43 +0100 (Mo, 17 Mär 2008) | 5 lines
      
        Issue 2321: reduce memory usage (increase the memory that is returned
        to the system) by using pymalloc for the data of unicode objects.
      
        Will backport.
      ........
        r61465 | martin.v.loewis | 2008-03-17 22:55:30 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Add David Wolever.
      ........
        r61468 | gregory.p.smith | 2008-03-18 01:20:01 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Fix the IOError message text when opening a file with an invalid filename.
        Error reported by Ilan Schnell.
      ........
        r61471 | brett.cannon | 2008-03-18 02:00:07 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Convert test_strftime, test_getargs, and test_pep247 to use unittest.
      ........
        r61472 | jeffrey.yasskin | 2008-03-18 02:09:59 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster.
      ........
        r61473 | brett.cannon | 2008-03-18 02:50:25 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Convert test_dummy_threading and test_dbm to unittest.
      ........
        r61474 | brett.cannon | 2008-03-18 02:58:56 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Move test_extcall to doctest.
      ........
        r61480 | brett.cannon | 2008-03-18 04:46:22 +0100 (Di, 18 Mär 2008) | 2 lines
      
        test_errno was a no-op test; now it actually tests things and uses unittest.
      ........
        r61483 | brett.cannon | 2008-03-18 05:09:00 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Remove our implementation of memmove() and strerror(); both are in the C89
        standard library.
      ........
        r61484 | brett.cannon | 2008-03-18 05:16:06 +0100 (Di, 18 Mär 2008) | 2 lines
      
        The output directory for tests that compare against stdout is now gone!
      ........
        r61488 | jeffrey.yasskin | 2008-03-18 05:29:35 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Block the "socket.ssl() is deprecated" warning from test_socket_ssl.
      ........
        r61495 | jeffrey.yasskin | 2008-03-18 05:56:06 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We
        still sleep at all to make it likely that all threads are active at the same
        time.
      ........
        r61496 | jeffrey.yasskin | 2008-03-18 06:12:41 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Speed up test_dict by about 10x by only checking selected dict literal sizes,
        instead of every integer from 0 to 400. Exhaustive testing wastes time without
        providing enough more assurance that the code is correct.
      ........
        r61498 | neal.norwitz | 2008-03-18 06:20:29 +0100 (Di, 18 Mär 2008) | 1 line
      
        Try increasing the timeout to reduce the flakiness of this test.
      ........
        r61503 | brett.cannon | 2008-03-18 06:43:04 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Improve the error message for a test that failed on the S-390 Debian buildbot.
      ........
        r61504 | jeffrey.yasskin | 2008-03-18 06:45:40 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with
        their times.
      ........
        r61507 | neal.norwitz | 2008-03-18 07:03:46 +0100 (Di, 18 Mär 2008) | 1 line
      
        Add some info to the failure messages
      ........
        r61509 | trent.nelson | 2008-03-18 08:02:12 +0100 (Di, 18 Mär 2008) | 1 line
      
        Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000.  The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH.
      ........
        r61510 | trent.nelson | 2008-03-18 08:32:47 +0100 (Di, 18 Mär 2008) | 5 lines
      
        The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either:
            a) no sound card entirely
            b) legacy beep driver has been disabled
            c) the legacy beep driver has been uninstalled
        Sometimes RuntimeErrors are raised, sometimes they're not.  If _have_soundcard() returns False, don't expect winsound.Beep() to raise a RuntimeError, as this clearly isn't the case, as demonstrated by the various Win32 XP buildbots.
      ........
        r61515 | martin.v.loewis | 2008-03-18 13:20:15 +0100 (Di, 18 Mär 2008) | 2 lines
      
        norwitz-amd64 (gentoo) has EREMOTEIO.
      ........
        r61516 | martin.v.loewis | 2008-03-18 13:45:37 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Add more Linux error codes.
      ........
        r61517 | martin.v.loewis | 2008-03-18 14:05:03 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Add WSA errors.
      ........
        r61518 | martin.v.loewis | 2008-03-18 14:16:05 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Note that the stderr output of the test is intentional.
      ........
      b186d008
  4. 17 Mar, 2008 3 kayıt (commit)
  5. 16 Mar, 2008 2 kayıt (commit)
    • Mark Dickinson's avatar
      Fix datetime_strptime following svnmerge from trunk; it was · fc689ddc
      Mark Dickinson yazdı
      using the wrong format codes ('s' instead of 'u') in
      PyObject_CallMethod.
      fc689ddc
    • Christian Heimes's avatar
      Merged revisions… · dd15f6c3
      Christian Heimes yazdı
      Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line
      
        Add more items; add fragmentary notes
      ........
        r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines
      
        Issue#2238: some syntax errors from *args or **kwargs expressions
        would give bogus error messages, because of untested exceptions::
      
            >>> f(**g(1=2))
            XXX undetected error
            Traceback (most recent call last):
              File "<stdin>", line 1, in <module>
            TypeError: 'int' object is not iterable
      
        instead of the expected SyntaxError: keyword can't be an expression
      
        Will backport.
      ........
        r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines
      
        Remove the files/dirs after closing the DB so the tests work on Windows.
        Patch from Trent Nelson.  Also simplified removing a file by using test_support.
      ........
        r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines
      
        Get this test to pass even when there is no sound card in the system.
        Patch from Trent Nelson.  (I can't test this.)
      ........
        r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines
      
        Catch OSError when trying to remove a file in case removal fails. This
        should prevent a failure in tearDown masking any real test failure.
      ........
        r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines
      
        Make the timeout longer to give slow machines a chance to pass the test
        before timing out.  This doesn't change the duration of the test under
        normal circumstances.  This is targetted at fixing the spurious failures
        on the FreeBSD buildbot primarily.
      ........
        r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line
      
        Tabs -> spaces
      ........
        r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line
      
        Use -u urlfetch to run more tests
      ........
        r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line
      
        test_smtplib sometimes reports leaks too, suppress it
      ........
        r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines
      
        Fix test_socketserver on Windows after r61099 added several signal.alarm()
        calls (which don't exist on non-Unix platforms).
      
        Thanks to Trent Nelson for the report and patch.
      ........
        r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines
      
        Fix some rst.
      ........
        r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines
      
        News entry for yesterdays commit.
      ........
        r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines
      
        Issue 1872: Changed the struct module typecode from 't' to '?', for
        compatibility with PEP3118.
      ........
        r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines
      
        Elaborate on the role of the altinstall target when installing multiple
        versions.
      ........
        r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines
      
        #2239: PYTHONPATH delimiter is os.pathsep.
      ........
        r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line
      
        C implementation of itertools.permutations().
      ........
        r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line
      
        Small code cleanup.
      ........
        r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines
      
        cd PCbuild only after deleting all pyc files.
      ........
        r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line
      
        Add examples.
      ........
        r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line
      
        Add two items
      ........
        r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        #1725737: ignore other VC directories other than CVS and SVN's too.
      ........
        r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines
      
        Patch #2232: os.tmpfile might fail on Windows if the user has no
        permission to create files in the root directory.
        Will backport to 2.5.
      ........
        r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        Expand on re.split behavior with captured expressions.
      ........
        r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        Little clarification of assignments.
      ........
        r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        Add isinstance/issubclass to tutorial.
      ........
        r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        Add missing NEWS entry for r61263.
      ........
        r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        #2225: return nonzero status code from py_compile if not all files could be compiled.
      ........
        r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        #2220: handle matching failure more gracefully.
      ........
        r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines
      
        Bug #2220: handle rlcompleter attribute match failure more gracefully.
      ........
        r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line
      
        Rely on x64 platform configuration when building _bsddb on AMD64.
      ........
        r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line
      
        Update db-4.4.20 build procedure.
      ........
        r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line
      
        More tests.
      ........
        r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line
      
        Issue 2246:  itertools grouper object did not participate in GC (should be backported).
      ........
        r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line
      
        Tweak recipes and tests
      ........
        r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines
      
        Progress on issue #1193577 by adding a polling .shutdown() method to
        SocketServers. The core of the patch was written by Pedro Werneck, but any bugs
        are mine. I've also rearranged the code for timeouts in order to avoid
        interfering with the shutdown poll.
      ........
        r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line
      
        Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
      ........
        r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line
      
        Grammar fix
      ........
        r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines
      
        #2253: fix continue vs. finally docs.
      ........
        r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines
      
        Add new name for Mandrake: Mandriva.
      ........
        r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines
      
        #1533486: fix types in refcount intro.
      ........
        r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines
      
      
        Issue 1106316. post_mortem()'s parameter, traceback, is now
        optional: it defaults to the traceback of the exception that is currently
        being handled.
      ........
        r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines
      
        Add tests for with and finally performance to pybench.
      ........
        r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines
      
        Fix pybench for pythons < 2.6, tested back to 2.3.
      ........
        r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines
      
        Well that was dumb. platform.python_implementation returns a function, not a
        string.
      ........
        r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines
      
        #2249: document assertTrue and assertFalse.
      ........
        r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines
      
        Introduce a lock to fix a race condition which caused an exception in the test.
        Some buildbots were consistently failing (e.g., amd64).
        Also remove a couple of semi-colons.
      ........
        r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line
      
        Add recipe to docs.
      ........
        r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines
      
        Fix the overflows in expandtabs().  "This time for sure!"
        (Exploit at request.)
      ........
        r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line
      
        Improve docs for itemgetter().  Show that it works with slices.
      ........
        r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines
      
        #2265: fix example.
      ........
        r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines
      
        #2270: fix typo.
      ........
        r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines
      
        #1720705: add docs about import/threading interaction, wording by Nick.
      ........
        r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line
      
        Add class decorators
      ........
        r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line
      
        Add 2-to-3 support for the itertools moved to builtins or renamed.
      ........
        r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line
      
        Consistent tense.
      ........
        r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line
      
        Issue 2274:  Add heapq.heappushpop().
      ........
        r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line
      
        Simplify the nlargest() code using heappushpop().
      ........
        r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines
      
        Move test_thread over to unittest. Commits GHOP 237.
      
        Thanks Benjamin Peterson for the patch.
      ........
        r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines
      
        Move test_tokenize to doctest.
      
        Done as GHOP 238 by Josip Dzolonga.
      ........
        r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines
      
        Convert test_contains, test_crypt, and test_select to unittest.
      
        Patch from GHOP 294 by David Marek.
      ........
        r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines
      
        Move test_gdbm to use unittest.
      
        Closes issue #1960. Thanks Giampaolo Rodola.
      ........
        r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines
      
        Convert test_fcntl to unittest.
      
        Closes issue #2055. Thanks Giampaolo Rodola.
      ........
        r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line
      
        Leave heapreplace() unchanged.
      ........
        r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines
      
        Patch #2284: add -x64 option to rt.bat.
      ........
        r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines
      
        Use -x64 flag.
      ........
        r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines
      
        Remove a bad test.
      ........
        r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines
      
        Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently
        across platforms:  it should now raise OverflowError on all
        platforms.  (Previously it raised OverflowError only on
        non IEEE 754 platforms.)
      
        Also fix the (already existing) test for this behaviour
        so that it actually raises TestFailed instead of just
        referencing it.
      ........
        r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line
      
        Remove unneeded initializer.
      ........
        r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines
      
        Run debug version, cd to PCbuild.
      ........
        r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines
      
        Remove obsolete paragraph. #2288.
      ........
        r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines
      
        Fix lots of broken links in the docs, found by Sphinx' external link checker.
      ........
        r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line
      
        note that fork and forkpty raise OSError on failure
      ........
        r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line
      
        add %f format to datetime - issue 1158
      ........
        r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines
      
        .
      ........
      dd15f6c3
  6. 13 Mar, 2008 4 kayıt (commit)
  7. 08 Mar, 2008 4 kayıt (commit)
  8. 04 Mar, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from · 7864476a
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61209 | georg.brandl | 2008-03-03 21:37:55 +0100 (Mon, 03 Mar 2008) | 2 lines
      
        There are now sixteen isfoo functions.
      ........
        r61210 | georg.brandl | 2008-03-03 21:39:00 +0100 (Mon, 03 Mar 2008) | 2 lines
      
        15 -> 16, the 2nd
      ........
        r61211 | georg.brandl | 2008-03-03 22:22:47 +0100 (Mon, 03 Mar 2008) | 2 lines
      
        Actually import itertools.
      ........
        r61212 | georg.brandl | 2008-03-03 22:31:50 +0100 (Mon, 03 Mar 2008) | 2 lines
      
        Expand a bit on genexp scopes.
      ........
        r61213 | raymond.hettinger | 2008-03-03 23:04:55 +0100 (Mon, 03 Mar 2008) | 1 line
      
        Remove dependency on itertools -- a simple genexp suffices.
      ........
        r61214 | raymond.hettinger | 2008-03-03 23:19:58 +0100 (Mon, 03 Mar 2008) | 1 line
      
        Issue 2226: Callable checked for the wrong abstract method.
      ........
        r61217 | andrew.kuchling | 2008-03-04 01:40:32 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Typo fix
      ........
        r61218 | andrew.kuchling | 2008-03-04 02:30:10 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Grammar fix; markup fix
      ........
        r61219 | andrew.kuchling | 2008-03-04 02:47:38 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Fix sentence fragment
      ........
        r61220 | andrew.kuchling | 2008-03-04 02:48:26 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Typo fix
      ........
        r61221 | andrew.kuchling | 2008-03-04 02:49:37 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Add versionadded tags
      ........
        r61222 | andrew.kuchling | 2008-03-04 02:50:32 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Thesis night results: add various items
      ........
        r61224 | raymond.hettinger | 2008-03-04 05:17:08 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Beef-up docs and tests for itertools.  Fix-up end-case for product().
      ........
        r61225 | georg.brandl | 2008-03-04 08:25:54 +0100 (Tue, 04 Mar 2008) | 2 lines
      
        Fix some patch attributions.
      ........
        r61226 | georg.brandl | 2008-03-04 08:33:30 +0100 (Tue, 04 Mar 2008) | 2 lines
      
        #2230: document that PyArg_* leaves addresses alone on error.
      ........
        r61233 | neal.norwitz | 2008-03-04 17:22:46 +0100 (Tue, 04 Mar 2008) | 3 lines
      
        Close the file before trying to remove the directory so it works on Windows.
        As reported by Trent Nelson on python-dev.
      ........
        r61234 | thomas.heller | 2008-03-04 21:09:11 +0100 (Tue, 04 Mar 2008) | 9 lines
      
        Merged changes from libffi3-branch.
      
        The bundled libffi copy is now in sync with the recently released
        libffi3.0.4 version, apart from some small changes to
        Modules/_ctypes/libffi/configure.ac.
      
        I gave up on using libffi3 files on os x.
        Instead, static configuration with files from pyobjc is used.
      ........
        r61235 | thomas.heller | 2008-03-04 21:21:42 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Try to fix the build for PY_LINUX.
      ........
        r61236 | fred.drake | 2008-03-04 22:14:04 +0100 (Tue, 04 Mar 2008) | 2 lines
      
        fix typo
      ........
        r61237 | raymond.hettinger | 2008-03-04 23:29:44 +0100 (Tue, 04 Mar 2008) | 1 line
      
        Fix refleak in chain().
      ........
      7864476a
  9. 02 Mar, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · b558a2e1
      Christian Heimes yazdı
      Merged revisions 61143-61144,61146-61147,61150-61151,61157,61165-61168,61170-61173,61176-61177,61183 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61143 | barry.warsaw | 2008-03-01 03:23:38 +0100 (Sat, 01 Mar 2008) | 2 lines
      
        Bump to version 2.6a1
      ........
        r61144 | barry.warsaw | 2008-03-01 03:26:42 +0100 (Sat, 01 Mar 2008) | 1 line
      
        bump idle version number
      ........
        r61146 | fred.drake | 2008-03-01 03:45:07 +0100 (Sat, 01 Mar 2008) | 2 lines
      
        fix typo
      ........
        r61147 | barry.warsaw | 2008-03-01 03:53:36 +0100 (Sat, 01 Mar 2008) | 1 line
      
        Add date to NEWS
      ........
        r61150 | barry.warsaw | 2008-03-01 04:00:52 +0100 (Sat, 01 Mar 2008) | 1 line
      
        Give IDLE a release date
      ........
        r61151 | barry.warsaw | 2008-03-01 04:15:20 +0100 (Sat, 01 Mar 2008) | 1 line
      
        More copyright year and version number bumps
      ........
        r61157 | barry.warsaw | 2008-03-01 18:11:41 +0100 (Sat, 01 Mar 2008) | 2 lines
      
        Set things up for 2.6a2.
      ........
        r61165 | georg.brandl | 2008-03-02 07:28:16 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        It's 2.6 now.
      ........
        r61166 | georg.brandl | 2008-03-02 07:32:32 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        Update year.
      ........
        r61167 | georg.brandl | 2008-03-02 07:44:08 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        Make patchlevel print out the release if called as a script.
      ........
        r61168 | georg.brandl | 2008-03-02 07:45:40 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        New default basename for HTML help files.
      ........
        r61170 | raymond.hettinger | 2008-03-02 11:59:31 +0100 (Sun, 02 Mar 2008) | 1 line
      
        Finish-up docs for combinations() and permutations() in itertools.
      ........
        r61171 | raymond.hettinger | 2008-03-02 12:17:51 +0100 (Sun, 02 Mar 2008) | 1 line
      
        Tighten example code.
      ........
        r61172 | raymond.hettinger | 2008-03-02 12:57:16 +0100 (Sun, 02 Mar 2008) | 1 line
      
        Simplify code for itertools.product().
      ........
        r61173 | raymond.hettinger | 2008-03-02 13:02:19 +0100 (Sun, 02 Mar 2008) | 1 line
      
        Handle 0-tuples which can be singletons.
      ........
        r61176 | georg.brandl | 2008-03-02 14:41:39 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        Make clear that the constants are strings.
      ........
        r61177 | georg.brandl | 2008-03-02 15:15:04 +0100 (Sun, 02 Mar 2008) | 2 lines
      
        Fix factual error.
      ........
        r61183 | gregory.p.smith | 2008-03-02 21:00:53 +0100 (Sun, 02 Mar 2008) | 4 lines
      
        Modify import of test_support so that the code can also be used with a
        stand alone distribution of bsddb that includes its own small copy of
        test_support for the needed functionality on older pythons.
      ........
      b558a2e1
  10. 29 Şub, 2008 2 kayıt (commit)
    • Gerhard Häring's avatar
      Make sure we get usable error messages when text could not be decoded when… · 873d9ff8
      Gerhard Häring yazdı
      Make sure we get usable error messages when text could not be decoded when fetched from the database.
      873d9ff8
    • Christian Heimes's avatar
      Merged revisions… · f16baebf
      Christian Heimes yazdı
      Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117-61125 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61118 | raymond.hettinger | 2008-02-28 23:30:42 +0100 (Thu, 28 Feb 2008) | 1 line
      
        Have itertools.chain() consume its inputs lazily instead of building a tuple of iterators at the outset.
      ........
        r61119 | raymond.hettinger | 2008-02-28 23:46:41 +0100 (Thu, 28 Feb 2008) | 1 line
      
        Add alternate constructor for itertools.chain().
      ........
        r61123 | mark.dickinson | 2008-02-29 03:16:37 +0100 (Fri, 29 Feb 2008) | 2 lines
      
        Add __format__ method to Decimal, to support PEP 3101
      ........
        r61124 | raymond.hettinger | 2008-02-29 03:21:48 +0100 (Fri, 29 Feb 2008) | 1 line
      
        Handle the repeat keyword argument for itertools.product().
      ........
        r61125 | mark.dickinson | 2008-02-29 04:29:17 +0100 (Fri, 29 Feb 2008) | 2 lines
      
        Fix docstring typo.
      ........
      f16baebf
  11. 28 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 380f7f22
      Christian Heimes yazdı
      Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61081 | neal.norwitz | 2008-02-26 09:04:59 +0100 (Tue, 26 Feb 2008) | 7 lines
      
        Speed up this test by about 99%.  Remove sleeps and replace with events.
        (This may fail on some slow platforms, but we can fix those cases which
        should be relatively isolated and easier to find now.)
        Move two test cases that didn't require a server to be started
        to a separate TestCase.  These tests were taking 3 seconds which
        is what the timeout was set to.
      ........
        r61082 | christian.heimes | 2008-02-26 09:18:11 +0100 (Tue, 26 Feb 2008) | 1 line
      
        The contains function raised a gcc warning. The new code is copied straight from py3k.
      ........
        r61084 | neal.norwitz | 2008-02-26 09:21:28 +0100 (Tue, 26 Feb 2008) | 3 lines
      
        Add a timing flag to Trace so you can see where slowness occurs
        like waiting for socket timeouts in test_smtplib :-).
      ........
        r61086 | christian.heimes | 2008-02-26 18:23:51 +0100 (Tue, 26 Feb 2008) | 3 lines
      
        Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg
        My tests don't show the promised speed up of 10%. The code is as fast as the old code for simple cases and slightly faster for complex cases with several of args and kwargs. But the patch simplifies the code, too.
      ........
        r61087 | georg.brandl | 2008-02-26 20:13:45 +0100 (Tue, 26 Feb 2008) | 2 lines
      
        #2194: fix some typos.
      ........
        r61088 | raymond.hettinger | 2008-02-27 00:40:50 +0100 (Wed, 27 Feb 2008) | 1 line
      
        Add itertools.combinations().
      ........
        r61089 | raymond.hettinger | 2008-02-27 02:08:04 +0100 (Wed, 27 Feb 2008) | 1 line
      
        One too many decrefs.
      ........
        r61090 | raymond.hettinger | 2008-02-27 02:08:30 +0100 (Wed, 27 Feb 2008) | 1 line
      
        Larger test range
      ........
        r61091 | raymond.hettinger | 2008-02-27 02:44:34 +0100 (Wed, 27 Feb 2008) | 1 line
      
        Simply the sample code for combinations().
      ........
      380f7f22
  12. 26 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 836baa53
      Christian Heimes yazdı
      Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61063 | andrew.kuchling | 2008-02-25 17:29:19 +0100 (Mon, 25 Feb 2008) | 1 line
      
        Move .setupterm() output so that we don't try to call endwin() if it fails
      ........
        r61064 | andrew.kuchling | 2008-02-25 17:29:58 +0100 (Mon, 25 Feb 2008) | 1 line
      
        Use file descriptor for real stdout
      ........
        r61067 | facundo.batista | 2008-02-25 19:06:00 +0100 (Mon, 25 Feb 2008) | 4 lines
      
      
        Issue 2117.  Update compiler module to handle class decorators.
        Thanks Thomas Herve
      ........
        r61069 | georg.brandl | 2008-02-25 21:17:56 +0100 (Mon, 25 Feb 2008) | 2 lines
      
        Rename sphinx.addons to sphinx.ext.
      ........
        r61071 | georg.brandl | 2008-02-25 21:20:45 +0100 (Mon, 25 Feb 2008) | 2 lines
      
        Revert r61029.
      ........
        r61072 | facundo.batista | 2008-02-25 23:33:55 +0100 (Mon, 25 Feb 2008) | 4 lines
      
      
        Issue 2168. gdbm and dbm needs to be iterable; this fixes a
        failure in the shelve module.  Thanks Thomas Herve.
      ........
        r61073 | raymond.hettinger | 2008-02-25 23:42:32 +0100 (Mon, 25 Feb 2008) | 1 line
      
        Make sure the itertools filter functions give the same performance for func=bool as func=None.
      ........
        r61074 | raymond.hettinger | 2008-02-26 00:17:41 +0100 (Tue, 26 Feb 2008) | 1 line
      
        Revert part of r60927 which made invalid assumptions about the API offered by db modules.
      ........
        r61075 | facundo.batista | 2008-02-26 00:46:02 +0100 (Tue, 26 Feb 2008) | 3 lines
      
      
        Coerced PyBool_Type to be able to compare it.
      ........
        r61076 | raymond.hettinger | 2008-02-26 03:46:54 +0100 (Tue, 26 Feb 2008) | 1 line
      
        Docs for itertools.combinations().  Implementation in forthcoming checkin.
      ........
        r61077 | neal.norwitz | 2008-02-26 05:50:37 +0100 (Tue, 26 Feb 2008) | 3 lines
      
        Don't use a hard coded port.  This test could hang/fail if the port is in use.
        Speed this test up by avoiding a sleep and using the event.
      ........
        r61078 | neal.norwitz | 2008-02-26 06:12:50 +0100 (Tue, 26 Feb 2008) | 1 line
      
        Whitespace normalization
      ........
        r61079 | neal.norwitz | 2008-02-26 06:23:51 +0100 (Tue, 26 Feb 2008) | 1 line
      
        Whitespace normalization
      ........
        r61080 | georg.brandl | 2008-02-26 07:40:10 +0100 (Tue, 26 Feb 2008) | 2 lines
      
        Banish tab.
      ........
      836baa53
  13. 24 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 61034-61036,61038-61048 via svnmerge from · a612dc02
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61034 | georg.brandl | 2008-02-24 01:03:22 +0100 (Sun, 24 Feb 2008) | 4 lines
      
        #900744: If an invalid chunked-encoding header is sent by a server,
        httplib will now raise IncompleteRead and close the connection instead
        of raising ValueError.
      ........
        r61035 | georg.brandl | 2008-02-24 01:14:24 +0100 (Sun, 24 Feb 2008) | 2 lines
      
        #1627: httplib now ignores negative Content-Length headers.
      ........
        r61039 | andrew.kuchling | 2008-02-24 03:39:15 +0100 (Sun, 24 Feb 2008) | 1 line
      
        Remove stray word
      ........
        r61040 | neal.norwitz | 2008-02-24 03:40:58 +0100 (Sun, 24 Feb 2008) | 3 lines
      
        Add a little info to the 3k deprecation warnings about what to use instead.
        Suggested by Raymond Hettinger.
      ........
        r61041 | facundo.batista | 2008-02-24 04:17:21 +0100 (Sun, 24 Feb 2008) | 4 lines
      
      
        Issue 1742669. Now %d accepts very big float numbers.
        Thanks Gabriel Genellina.
      ........
        r61046 | neal.norwitz | 2008-02-24 08:21:56 +0100 (Sun, 24 Feb 2008) | 5 lines
      
        Get ctypes working on the Alpha (Tru64).  The problem was that there
        were two module_methods and the one used depended on the order the
        modules were loaded.  By making the test module_methods static,
        it is not exported and the correct version is picked up.
      ........
        r61048 | neal.norwitz | 2008-02-24 09:27:49 +0100 (Sun, 24 Feb 2008) | 1 line
      
        Fix typo of hexidecimal
      ........
      a612dc02
    • Christian Heimes's avatar
      Merged revisions 61003-61033 via svnmerge from · d3eb5a15
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61004 | georg.brandl | 2008-02-23 19:47:04 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Documentation coverage builder, part 1.
      ........
        r61006 | andrew.kuchling | 2008-02-23 20:02:33 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #1389051: IMAP module tries to read entire message in one chunk.  Patch by Fredrik Lundh.
      ........
        r61008 | andrew.kuchling | 2008-02-23 20:28:58 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #1389051, #1092502: fix excessively large allocations when using read() on a socket
      ........
        r61011 | jeffrey.yasskin | 2008-02-23 20:40:54 +0100 (Sat, 23 Feb 2008) | 13 lines
      
        Prevent classes like:
            class RunSelfFunction(object):
                def __init__(self):
                    self.thread = threading.Thread(target=self._run)
                    self.thread.start()
                def _run(self):
                    pass
        from creating a permanent cycle between the object and the thread by having the
        Thread delete its references to the object when it completes.
      
        As an example of the effect of this bug, paramiko.Transport inherits from
        Thread to avoid it.
      ........
        r61013 | jeffrey.yasskin | 2008-02-23 21:40:35 +0100 (Sat, 23 Feb 2008) | 3 lines
      
        Followup to r61011: Also avoid the reference cycle when the Thread's target
        raises an exception.
      ........
        r61017 | georg.brandl | 2008-02-23 22:59:11 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #2101: fix removeAttribute docs.
      ........
        r61018 | georg.brandl | 2008-02-23 23:05:38 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Add examples to modulefinder docs. Written for GHOP by Josip Dzolonga.
      ........
        r61019 | georg.brandl | 2008-02-23 23:09:24 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Use os.closerange() in popen2.
      ........
        r61020 | georg.brandl | 2008-02-23 23:14:02 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Use os.closerange().
      ........
        r61021 | georg.brandl | 2008-02-23 23:35:33 +0100 (Sat, 23 Feb 2008) | 3 lines
      
        In test_heapq and test_bisect, test both the Python and the C implementation.
        Originally written for GHOP by Josip Dzolonga, heavily patched by me.
      ........
        r61024 | facundo.batista | 2008-02-23 23:54:12 +0100 (Sat, 23 Feb 2008) | 3 lines
      
      
        Added simple test case. Thanks Benjamin Peterson.
      ........
        r61025 | georg.brandl | 2008-02-23 23:55:18 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1825: correctly document msilib.add_data.
      ........
        r61027 | georg.brandl | 2008-02-24 00:02:23 +0100 (Sun, 24 Feb 2008) | 2 lines
      
        #1826: allow dotted attribute paths in operator.attrgetter.
      ........
        r61028 | georg.brandl | 2008-02-24 00:04:35 +0100 (Sun, 24 Feb 2008) | 2 lines
      
        #1506171: added operator.methodcaller().
      ........
        r61029 | georg.brandl | 2008-02-24 00:25:26 +0100 (Sun, 24 Feb 2008) | 2 lines
      
        Document import ./. threading issues. #1720705.
      ........
        r61032 | georg.brandl | 2008-02-24 00:43:01 +0100 (Sun, 24 Feb 2008) | 2 lines
      
        Specify what kind of warning -3 emits.
      ........
        r61033 | christian.heimes | 2008-02-24 00:59:45 +0100 (Sun, 24 Feb 2008) | 1 line
      
        MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.
      ........
      d3eb5a15
  14. 23 Şub, 2008 3 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 60990-61002 via svnmerge from · 05e8be17
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Removed duplicate Py_CHARMASK define.  It's already defined in Python.h.
      ........
        r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines
      
        #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
        Remove automatic handling of datetime.date and datetime.time.
        This breaks backward compatibility, but python-dev discussion was strongly
        against this automatic conversion; see the bug for a link.
      ........
        r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #835521: Add index entries for various pickle-protocol methods and attributes
      ........
        r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1433694: minidom's .normalize() failed to set .nextSibling for last element.
        Fix by Malte Helmert
      ........
        r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #2167 from calvin: Remove unused imports
      ........
        r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #1957: syslogmodule: Release GIL when calling syslog(3)
      ........
        r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Issue #2051 and patch from Alexander Belopolsky:
        Permission for pyc and pyo files are inherited from the py file.
      ........
      05e8be17
    • Christian Heimes's avatar
      Merged revisions… · 8640e749
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1492: allow overriding BaseHTTPServer's content type for error messages.
      ........
        r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #2165: fix test_logging failure on some machines.
      ........
        r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
      
      
        Issue 1089358.  Adds the siginterrupt() function, that is just a
        wrapper around the system call with the same name.  Also added
        test cases, doc changes and NEWS entry. Thanks Jason and Ralf
        Schmitt.
      ........
        r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #2067: file.__exit__() now calls subclasses' close() method.
      ........
        r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        More difflib examples. Written for GHOP by Josip Dzolonga.
      ........
        r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #2072: correct documentation for .rpc_paths
      ........
        r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #2161: Fix opcode name.
      ........
        r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1119331: ncurses will just call exit() if the terminal name isn't found.
        Call setupterm() first so that we get a Python exception instead of just existing.
      ........
      8640e749
    • Christian Heimes's avatar
      Merged revisions… · 90c3d9b9
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60969,60971-60976 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60965 | eric.smith | 2008-02-22 18:43:17 +0100 (Fri, 22 Feb 2008) | 1 line
      
        Tests for bin() builtin.  These need to get merged into py3k, which has no tests for bin.
      ........
        r60968 | raymond.hettinger | 2008-02-22 20:50:06 +0100 (Fri, 22 Feb 2008) | 1 line
      
        Document itertools.product().
      ........
        r60969 | raymond.hettinger | 2008-02-23 03:20:41 +0100 (Sat, 23 Feb 2008) | 9 lines
      
        Improve the implementation of itertools.product()
      
        * Fix-up issues pointed-out by Neal Norwitz.
        * Add extensive comments.
        * The lz->result variable is now a tuple instead of a list.
        * Use fast macro getitem/setitem calls so most code is in-line.
        * Re-use the result tuple if available (modify in-place instead of copy).
      ........
        r60972 | raymond.hettinger | 2008-02-23 05:03:50 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Add more comments
      ........
        r60973 | raymond.hettinger | 2008-02-23 11:04:15 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Add recipe using itertools.product().
      ........
        r60974 | facundo.batista | 2008-02-23 13:01:13 +0100 (Sat, 23 Feb 2008) | 6 lines
      
      
        Issue 1881. Increased the stack limit from 500 to 1500. Also added
        a test for this (and because of this test you'll see in stderr a
        message that parser.c sends before raising MemoryError).
        Thanks Ralf Schmitt.
      ........
        r60975 | facundo.batista | 2008-02-23 13:27:17 +0100 (Sat, 23 Feb 2008) | 4 lines
      
      
        Issue 1776581. Minor corrections to smtplib, and two small tests.
        Thanks Alan McIntyre.
      ........
        r60976 | facundo.batista | 2008-02-23 13:46:10 +0100 (Sat, 23 Feb 2008) | 5 lines
      
      
        Issue 1781. Now ConfigParser.add_section does not let you add a
        DEFAULT section any more, because it duplicated sections with
        the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann.
      ........
      90c3d9b9
  15. 22 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · c3f30c43
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
      
        Added PEP 3101.
      ........
        r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
      
        Fixes contributed by Ori Avtalion.
      ........
        r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Trim leading zeros from a floating point exponent, per C99.  See issue 1600.  As far as I know, this only affects Windows.  Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
      ........
        r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
      ........
        r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Close manifest file.
        This change doesn't make any difference to CPython, but is a necessary fix for Jython.
      ........
        r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Remove news about float repr() -- issue 1580 is still in limbo.
      ........
        r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
      
        Removed uses of dict.has_key() from distutils, and uses of
        callable() from copy_reg.py, so the interpreter now starts up
        without warnings when '-3' is given.  More work like this needs to
        be done in the rest of the stdlib.
      ........
        r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
      
        configure.ac: Remove the configure check for _Bool, it is already done in the
        top-level Python configure script.
        configure, fficonfig.h.in: regenerated.
      ........
        r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
      
        Replace 'has_key()' with 'in'.
        Replace 'raise Error, stuff' with 'raise Error(stuff)'.
      ........
        r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Update more instances of has_key().
      ........
        r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
      
        Fix a few typos and layout glitches (more work is needed).
        Move 2.5 news to Misc/HISTORY.
      ........
        r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        #2079: typo in userdict docs.
      ........
        r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Part of #2154: minimal syntax fixes in doc example snippets.
      ........
        r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
      
        First draft for itertools.product().  Docs and other updates forthcoming.
      ........
        r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
      
        Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
      ........
        r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        A lot more typo fixes by Ori Avtalion.
      ........
        r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        Don't reference pyshell.
      ........
        r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        Another fix.
      ........
      c3f30c43
  16. 19 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 7131fd95
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60878,60880-60892,60894-60898 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60876 | georg.brandl | 2008-02-17 16:14:10 +0100 (Sun, 17 Feb 2008) | 2 lines
      
        Fix function name.
      ........
        r60877 | facundo.batista | 2008-02-17 17:21:13 +0100 (Sun, 17 Feb 2008) | 4 lines
      
      
        Now we handle different the backup copy, because of security
        issues regarding user/group and permissions. Fixes 1050828.
      ........
        r60878 | facundo.batista | 2008-02-17 19:59:29 +0100 (Sun, 17 Feb 2008) | 4 lines
      
      
        Issue 2112. mmap does not raises EnvironmentError no more, but
        a subclass of it. Thanks John Lenton.
      ........
        r60882 | amaury.forgeotdarc | 2008-02-17 21:56:31 +0100 (Sun, 17 Feb 2008) | 5 lines
      
        Compilation was broken on Windows since the introduction of Advanced String Formatting.
      
        Only PCBuild (vs9) was really tested.
        Changes for older compilers were done manually.
      ........
        r60883 | georg.brandl | 2008-02-17 22:18:55 +0100 (Sun, 17 Feb 2008) | 2 lines
      
        #2133: fix HTML color spec.
      ........
        r60884 | facundo.batista | 2008-02-18 04:43:43 +0100 (Mon, 18 Feb 2008) | 5 lines
      
      
        Issue #1916. Added isgenerator() and isgeneratorfunction() to
        inspect.py.  Thanks Javi Mansilla for patch review and
        corrections.
      ........
        r60885 | facundo.batista | 2008-02-18 13:48:43 +0100 (Mon, 18 Feb 2008) | 4 lines
      
      
        Issue 1224. Now we support again the double slash in the URL.
        Thanks Anthony Lenton.
      ........
        r60887 | eric.smith | 2008-02-18 15:25:02 +0100 (Mon, 18 Feb 2008) | 1 line
      
        Temporarily removed float tests.  See issue 1600.
      ........
        r60891 | kristjan.jonsson | 2008-02-18 18:40:47 +0100 (Mon, 18 Feb 2008) | 1 line
      
        Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled.
      ........
      7131fd95
  17. 17 Şub, 2008 2 kayıt (commit)
    • Eric Smith's avatar
      Fixes for shared 2.6 code that implements PEP 3101, advanced string · 8fd3eba0
      Eric Smith yazdı
      formatting.
      
      Includes:
       - Modifying tests for basic types to use __format__ methods, instead
         of builtin "format".
       - Adding PyObject_Format.
       - General str/unicode cleanup discovered when backporting to 2.6.
       - Removing datetimemodule.c's time_format, since it was identical
         to date_format.
      
      The files in Objects/stringlib that implement PEP 3101 (stringdefs.h,
      unicodedefs.h, formatter.h, string_format.h) are identical in trunk
      and py3k.  Any changes from here on should be made to trunk, and
      changes will propogate to py3k).
      8fd3eba0
    • Christian Heimes's avatar
      Merged revisions… · 18c66898
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60873 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60850 | amaury.forgeotdarc | 2008-02-16 01:16:50 +0100 (Sat, 16 Feb 2008) | 3 lines
      
        mmap.PROT_READ does not exists on win32;
        Skip this test created by r60830.
      ........
        r60851 | raymond.hettinger | 2008-02-16 02:22:54 +0100 (Sat, 16 Feb 2008) | 1 line
      
        Add __all__ to logging module.
      ........
        r60855 | georg.brandl | 2008-02-16 10:37:32 +0100 (Sat, 16 Feb 2008) | 2 lines
      
        #2120: broken links in advocacy document.
      ........
        r60860 | amaury.forgeotdarc | 2008-02-16 15:34:57 +0100 (Sat, 16 Feb 2008) | 23 lines
      
        Crashers of the day: Py_CLEAR must be used when there is a chance that the
        function can be called recursively.
        This was discussed in issue1020188.
      
        In python codebase, all occurrences of Py_[X]DECREF(xxx->yyy) are suspect,
        except when they appear in tp_new or tp_dealloc functions, or when
        the member cannot be of a user-defined class.
        Note that tp_init is not safe.
      
        I do have a (crashing) example for every changed line.
        Is it worth adding them to the test suite?
      
        Example:
      
        class SpecialStr(str):
            def __del__(self):
                s.close()
      
        import cStringIO
        s = cStringIO.StringIO(SpecialStr("text"))
        s.close() # Segfault
      ........
        r60871 | amaury.forgeotdarc | 2008-02-16 21:55:24 +0100 (Sat, 16 Feb 2008) | 3 lines
      
        Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer
        is still present in the containing structure.
      ........
        r60872 | brett.cannon | 2008-02-17 02:59:18 +0100 (Sun, 17 Feb 2008) | 4 lines
      
        Move test_logging over to doctest.
      
        Thanks to Christopher White from GHOP.
      ........
        r60873 | georg.brandl | 2008-02-17 12:33:38 +0100 (Sun, 17 Feb 2008) | 2 lines
      
        #2131: note that codecs.open() always opens files in binary mode.
      ........
      18c66898
  18. 16 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · a156e09b
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60790 | raymond.hettinger | 2008-02-14 10:32:45 +0100 (Thu, 14 Feb 2008) | 4 lines
      
        Add diagnostic message to help figure-out why SocketServer tests occasionally crash
        when trying to remove a pid that in not in the activechildren list.
      ........
        r60791 | raymond.hettinger | 2008-02-14 11:46:57 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Add fixed-point examples to the decimal FAQ
      ........
        r60792 | raymond.hettinger | 2008-02-14 12:01:10 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Improve rst markup
      ........
        r60794 | raymond.hettinger | 2008-02-14 12:57:25 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Show how to remove exponents.
      ........
        r60795 | raymond.hettinger | 2008-02-14 13:05:42 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Fix markup.
      ........
        r60797 | christian.heimes | 2008-02-14 13:47:33 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation.
      ........
        r60798 | raymond.hettinger | 2008-02-14 13:49:37 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Simplify moneyfmt() recipe.
      ........
        r60810 | raymond.hettinger | 2008-02-14 20:02:39 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Fix markup
      ........
        r60811 | raymond.hettinger | 2008-02-14 20:30:30 +0100 (Thu, 14 Feb 2008) | 1 line
      
        No need to register subclass of ABCs.
      ........
        r60814 | thomas.heller | 2008-02-14 22:00:28 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Try to correct a markup error that does hide the following paragraph.
      ........
        r60822 | christian.heimes | 2008-02-14 23:40:11 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Use a static and interned string for __subclasscheck__ and __instancecheck__ as suggested by Thomas Heller in #2115
      ........
        r60827 | christian.heimes | 2008-02-15 07:57:08 +0100 (Fri, 15 Feb 2008) | 1 line
      
        Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them.
      ........
        r60830 | christian.heimes | 2008-02-15 09:20:11 +0100 (Fri, 15 Feb 2008) | 2 lines
      
        Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ
        Thanks to Thomas Herve for the fix.
      ........
        r60835 | eric.smith | 2008-02-15 13:14:32 +0100 (Fri, 15 Feb 2008) | 1 line
      
        In PyNumber_ToBase, changed from an assert to returning an error when PyObject_Index() returns something other than an int or long.  It should never be possible to trigger this, as PyObject_Index checks to make sure it returns an int or long.
      ........
        r60837 | skip.montanaro | 2008-02-15 20:03:59 +0100 (Fri, 15 Feb 2008) | 8 lines
      
        Two new functions:
      
          * place_summary_first copies the regrtest summary to the front of the file
            making it easier to scan quickly for problems.
      
          * count_failures gets the actual count of the number of failing tests, not
            just a 1 (some failures) or 0 (no failures).
      ........
        r60840 | raymond.hettinger | 2008-02-15 22:21:25 +0100 (Fri, 15 Feb 2008) | 1 line
      
        Update example to match the current syntax.
      ........
        r60841 | amaury.forgeotdarc | 2008-02-15 22:22:45 +0100 (Fri, 15 Feb 2008) | 8 lines
      
        Issue #2115: __slot__ attributes setting was 10x slower.
        Also correct a possible crash using ABCs.
      
        This change is exactly the same as an optimisation
        done 5 years ago, but on slot *access*:
        http://svn.python.org/view?view=rev&rev=28297
      ........
        r60842 | amaury.forgeotdarc | 2008-02-15 22:27:44 +0100 (Fri, 15 Feb 2008) | 2 lines
      
        Temporarily let these tests pass
      ........
        r60843 | kurt.kaiser | 2008-02-15 22:56:36 +0100 (Fri, 15 Feb 2008) | 2 lines
      
        ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.
      ........
        r60844 | kurt.kaiser | 2008-02-15 23:25:09 +0100 (Fri, 15 Feb 2008) | 4 lines
      
        Configured selection highlighting colors were ignored; updating highlighting
        in the config dialog would cause non-Python files to be colored as if they
        were Python source; improve use of ColorDelagator.  Patch 1334. Tal Einat.
      ........
        r60845 | amaury.forgeotdarc | 2008-02-15 23:44:20 +0100 (Fri, 15 Feb 2008) | 9 lines
      
        Re-enable tests, they were failing since gc.collect() clears the various freelists.
        They still remain fragile.
      
        For example, a call to assertEqual currently does not make any allocation
        (which surprised me at first).
        But this can change when gc.collect also deletes the numerous "zombie frames"
        attached to each function.
      ........
      a156e09b
  19. 14 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 68f5fbe9
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60766,60769-60786 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60752 | mark.dickinson | 2008-02-12 22:31:59 +0100 (Tue, 12 Feb 2008) | 5 lines
      
        Implementation of Fraction.limit_denominator.
      
        Remove Fraction.to_continued_fraction and
        Fraction.from_continued_fraction
      ........
        r60754 | mark.dickinson | 2008-02-12 22:40:53 +0100 (Tue, 12 Feb 2008) | 3 lines
      
        Revert change in r60712:  turn alternate constructors back into
        classmethods instead of staticmethods.
      ........
        r60755 | mark.dickinson | 2008-02-12 22:46:54 +0100 (Tue, 12 Feb 2008) | 4 lines
      
        Replace R=fractions.Fraction with F=fractions.Fraction in
        test_fractions.py.  This should have been part of the name
        change from Rational to Fraction.
      ........
        r60758 | georg.brandl | 2008-02-13 08:20:22 +0100 (Wed, 13 Feb 2008) | 3 lines
      
        #2063: correct order of utime and stime in os.times()
        result on Windows.
      ........
        r60762 | jeffrey.yasskin | 2008-02-13 18:58:04 +0100 (Wed, 13 Feb 2008) | 7 lines
      
        Working on issue #1762: Brought
          ./python.exe -m timeit -s 'from fractions import Fraction; f = Fraction(3, 2)' 'isinstance(3, Fraction); isinstance(f, Fraction)'
        from 12.3 usec/loop to 3.44 usec/loop and
          ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3, 2)'
        from 48.8 usec to 23.6 usec by avoiding genexps and sets in __instancecheck__
        and inlining the common case from __subclasscheck__.
      ........
        r60765 | brett.cannon | 2008-02-13 20:15:44 +0100 (Wed, 13 Feb 2008) | 5 lines
      
        Fix --enable-universalsdk and its comment line so that zsh's flag completion
        works.
      
        Thanks to Jeroen Ruigrok van der Werven for the fix.
      ........
        r60771 | kurt.kaiser | 2008-02-14 01:08:55 +0100 (Thu, 14 Feb 2008) | 2 lines
      
        Bring NEWS.txt up to date from check-in msgs.
      ........
        r60772 | raymond.hettinger | 2008-02-14 02:08:02 +0100 (Thu, 14 Feb 2008) | 3 lines
      
        Update notes on Decimal.
      ........
        r60773 | raymond.hettinger | 2008-02-14 03:41:22 +0100 (Thu, 14 Feb 2008) | 1 line
      
        Fix decimal repr which should have used single quotes like other reprs.
      ........
        r60785 | jeffrey.yasskin | 2008-02-14 07:12:24 +0100 (Thu, 14 Feb 2008) | 11 lines
      
        Performance optimizations on Fraction's constructor.
      
          ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3)`
        31.7 usec/loop -> 9.2 usec/loop
      
          ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3, 2)'`
        27.7 usec/loop -> 9.32 usec/loop
      
          ./python.exe -m timeit -s 'from fractions import Fraction; f = Fraction(3, 2)' 'Fraction(f)'
        31.9 usec/loop -> 14.3 usec/loop
      ........
        r60786 | jeffrey.yasskin | 2008-02-14 08:49:25 +0100 (Thu, 14 Feb 2008) | 5 lines
      
        Change simple instances (in Fraction) of self.numerator and self.denominator to
        self._numerator and self._denominator. This speeds abs() up from 12.2us to
        10.8us and trunc() from 2.07us to 1.11us. This doesn't change _add and friends
        because they're more complicated.
      ........
      68f5fbe9
  20. 13 Şub, 2008 1 kayıt (commit)
  21. 12 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 0bd4e118
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60735-60751 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60735 | raymond.hettinger | 2008-02-11 23:53:01 +0100 (Mon, 11 Feb 2008) | 1 line
      
        Add notes on how decimal fits into the model.
      ........
        r60737 | raymond.hettinger | 2008-02-12 00:34:56 +0100 (Tue, 12 Feb 2008) | 1 line
      
        Fix markup
      ........
        r60738 | raymond.hettinger | 2008-02-12 00:38:00 +0100 (Tue, 12 Feb 2008) | 1 line
      
        Backport ABC docs
      ........
        r60739 | raymond.hettinger | 2008-02-12 01:15:32 +0100 (Tue, 12 Feb 2008) | 1 line
      
        Restore fractions.rst to the document tree.
      ........
        r60740 | raymond.hettinger | 2008-02-12 01:48:20 +0100 (Tue, 12 Feb 2008) | 1 line
      
        Fix typo in comments
      ........
        r60741 | raymond.hettinger | 2008-02-12 02:18:03 +0100 (Tue, 12 Feb 2008) | 1 line
      
        Bring decimal a bit closer to the spec for Reals.
      ........
        r60743 | martin.v.loewis | 2008-02-12 14:47:26 +0100 (Tue, 12 Feb 2008) | 2 lines
      
        Patch #1736: Fix file name handling of _msi.FCICreate.
      ........
        r60745 | kurt.kaiser | 2008-02-12 16:45:50 +0100 (Tue, 12 Feb 2008) | 2 lines
      
        what??! Correct r60225.
      ........
        r60747 | martin.v.loewis | 2008-02-12 19:47:34 +0100 (Tue, 12 Feb 2008) | 4 lines
      
        Patch #1966: Break infinite loop in httplib when the servers
        implements the chunked encoding incorrectly.
        Will backport to 2.5.
      ........
        r60749 | raymond.hettinger | 2008-02-12 20:05:36 +0100 (Tue, 12 Feb 2008) | 1 line
      
        dict.copy() rises from the ashes.  Revert r60687.
      ........
      0bd4e118
    • Thomas Heller's avatar
      Revert the last svnmerge (r60681) from trunk to _ctypes.c, it should · 08c0e631
      Thomas Heller yazdı
      not have been merged as was noticed in the commit message.
      08c0e631
  22. 11 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 3feef617
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60706,60708-60712,60714-60724 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60701 | georg.brandl | 2008-02-09 22:36:15 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Needs only 2.4 now.
      ........
        r60702 | georg.brandl | 2008-02-09 22:38:54 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Docs are rst now.
      ........
        r60703 | georg.brandl | 2008-02-09 23:00:00 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Fix link.
      ........
        r60704 | georg.brandl | 2008-02-10 00:09:25 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Fix for newest doctools.
      ........
        r60709 | raymond.hettinger | 2008-02-10 08:21:09 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Clarify that decimal also supports fixed-point arithmetic.
      ........
        r60710 | nick.coghlan | 2008-02-10 08:32:52 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Add missing NEWS entry for r60695
      ........
        r60712 | mark.dickinson | 2008-02-10 15:58:38 +0100 (Sun, 10 Feb 2008) | 3 lines
      
        Turn classmethods into staticmethods, and avoid calling the constructor
        of subclasses of Rational.  (See discussion in issue #1682.)
      ........
        r60715 | mark.dickinson | 2008-02-10 16:19:58 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Typos in decimal comment and documentation
      ........
        r60716 | skip.montanaro | 2008-02-10 16:31:54 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Get the saying right. ;-)
      ........
        r60717 | skip.montanaro | 2008-02-10 16:32:16 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        whoops - revert
      ........
        r60718 | mark.dickinson | 2008-02-10 20:23:36 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Remove reference to Rational
      ........
        r60719 | raymond.hettinger | 2008-02-10 21:35:16 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Complete an open todo on pickletools -- add a pickle optimizer.
      ........
        r60721 | mark.dickinson | 2008-02-10 22:29:51 +0100 (Sun, 10 Feb 2008) | 3 lines
      
        Rename rational.Rational to fractions.Fraction, to avoid name clash
        with numbers.Rational.  See issue #1682 for related discussion.
      ........
        r60722 | christian.heimes | 2008-02-11 03:26:22 +0100 (Mon, 11 Feb 2008) | 1 line
      
        The test requires the network resource
      ........
        r60723 | mark.dickinson | 2008-02-11 04:11:55 +0100 (Mon, 11 Feb 2008) | 3 lines
      
        Put an extra space into the repr of a Fraction:
        Fraction(1, 2) instead of Fraction(1,2).
      ........
      3feef617