1. 06 Şub, 2008 5 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 2202f877
      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,60568-60598,60600-60616 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60568 | christian.heimes | 2008-02-04 19:48:38 +0100 (Mon, 04 Feb 2008) | 1 line
      
        Increase debugging to investige failing tests on some build bots
      ........
        r60570 | christian.heimes | 2008-02-04 20:30:05 +0100 (Mon, 04 Feb 2008) | 1 line
      
        Small adjustments for test compact freelist test. It's no passing on Windows as well.
      ........
        r60573 | amaury.forgeotdarc | 2008-02-04 21:53:14 +0100 (Mon, 04 Feb 2008) | 2 lines
      
        Correct quotes in NEWS file
      ........
        r60575 | amaury.forgeotdarc | 2008-02-04 22:45:05 +0100 (Mon, 04 Feb 2008) | 13 lines
      
        #1750076: Debugger did not step on every iteration of a while statement.
      
        The mapping between bytecode offsets and source lines (lnotab) did not contain
        an entry for the beginning of the loop.
      
        Now it does, and the lnotab can be a bit larger:
        in particular, several statements on the same line generate several entries.
        However, this does not bother the settrace function, which will trigger only
        one 'line' event.
      
        The lnotab seems to be exactly the same as with python2.4.
      ........
        r60584 | amaury.forgeotdarc | 2008-02-05 01:26:21 +0100 (Tue, 05 Feb 2008) | 3 lines
      
        Change r60575 broke test_compile:
        there is no need to emit co_lnotab item when both offsets are zeros.
      ........
        r60587 | skip.montanaro | 2008-02-05 03:32:16 +0100 (Tue, 05 Feb 2008) | 1 line
      
        sync with most recent version from python-mode sf project
      ........
        r60588 | lars.gustaebel | 2008-02-05 12:51:40 +0100 (Tue, 05 Feb 2008) | 5 lines
      
        Issue #2004: Use mode 0700 for temporary directories and default
        permissions for missing directories.
      
        (will backport to 2.5)
      ........
        r60590 | georg.brandl | 2008-02-05 13:01:24 +0100 (Tue, 05 Feb 2008) | 2 lines
      
        Convert external links to internal links. Fixes #2010.
      ........
        r60592 | marc-andre.lemburg | 2008-02-05 15:50:40 +0100 (Tue, 05 Feb 2008) | 3 lines
      
        Keep distutils Python 2.1 compatible (or even Python 2.4 in this case).
      ........
        r60593 | andrew.kuchling | 2008-02-05 17:06:57 +0100 (Tue, 05 Feb 2008) | 5 lines
      
        Update PEP URL.
        (This code is duplicated between pydoc and DocXMLRPCServer; maybe it
        should be refactored as a GHOP project.)
      
        2.5.2 backport candidate.
      ........
        r60596 | guido.van.rossum | 2008-02-05 18:32:15 +0100 (Tue, 05 Feb 2008) | 2 lines
      
        In the experimental 'Scanner' feature, the group count was set wrong.
      ........
        r60602 | facundo.batista | 2008-02-05 20:03:32 +0100 (Tue, 05 Feb 2008) | 3 lines
      
      
        Issue 1951. Converts wave test cases to unittest.
      ........
        r60603 | georg.brandl | 2008-02-05 20:07:10 +0100 (Tue, 05 Feb 2008) | 2 lines
      
        Actually run the test.
      ........
        r60604 | skip.montanaro | 2008-02-05 20:24:30 +0100 (Tue, 05 Feb 2008) | 2 lines
      
        correct object name
      ........
        r60605 | georg.brandl | 2008-02-05 20:58:17 +0100 (Tue, 05 Feb 2008) | 7 lines
      
        * Use the same code to profile for test_profile and test_cprofile.
        * Convert both to unittest.
        * Use the same unit testing code.
        * Include the expected output in both test files.
        * Make it possible to regenerate the expected output by running
          the file as a script with an '-r' argument.
      ........
        r60613 | raymond.hettinger | 2008-02-06 02:49:00 +0100 (Wed, 06 Feb 2008) | 1 line
      
        Sync-up with Py3k work.
      ........
        r60614 | christian.heimes | 2008-02-06 13:44:34 +0100 (Wed, 06 Feb 2008) | 1 line
      
        Limit free list of method and builtin function objects to 256 entries each.
      ........
        r60616 | christian.heimes | 2008-02-06 14:33:44 +0100 (Wed, 06 Feb 2008) | 7 lines
      
        Unified naming convention for free lists and their limits. All free lists
        in Object/ are named ``free_list``, the counter ``numfree`` and the upper
        limit is a macro ``PyName_MAXFREELIST`` inside an #ifndef block.
      
        The chances should make it easier to adjust Python for platforms with
        less memory, e.g. mobile phones.
      ........
      2202f877
    • Mark Summerfield's avatar
      8f2d0061
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      Remove the old UserDict module. · 0fc8351f
      Raymond Hettinger yazdı
      0fc8351f
    • Raymond Hettinger's avatar
  2. 05 Şub, 2008 11 kayıt (commit)
  3. 04 Şub, 2008 7 kayıt (commit)
    • Raymond Hettinger's avatar
      Remove one use of UserDict.UserDict · 2add352c
      Raymond Hettinger yazdı
      2add352c
    • Raymond Hettinger's avatar
      Fix typo (thanks Nick). · b3460423
      Raymond Hettinger yazdı
      b3460423
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      In bsddb, replace UserDict.DictMixin with collections.MutableMapping. · d190f9c4
      Raymond Hettinger yazdı
      I can't test this directly on my build, so letting the buildbots do it for me.
      If it fails, expect a reversion.
      d190f9c4
    • Raymond Hettinger's avatar
      3be449ae
    • Raymond Hettinger's avatar
    • Christian Heimes's avatar
      Merged revisions… · 15ebc88d
      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-60567 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60553 | neal.norwitz | 2008-02-03 17:53:09 +0100 (Sun, 03 Feb 2008) | 1 line
      
        Ignore leaky warnings from test_asynchat
      ........
        r60555 | christian.heimes | 2008-02-03 20:51:13 +0100 (Sun, 03 Feb 2008) | 1 line
      
        Another int -> pid_t case
      ........
        r60560 | amaury.forgeotdarc | 2008-02-03 23:51:43 +0100 (Sun, 03 Feb 2008) | 6 lines
      
        Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does.
      
        Add PyFrozenSet_Check(), which was not needed before; The list of Py*Set_Check* macros seems to be complete now.
      
        Add missing NEWS entries about all this.
      ........
        r60563 | amaury.forgeotdarc | 2008-02-04 00:14:32 +0100 (Mon, 04 Feb 2008) | 2 lines
      
        Nasty typo in setobject.h
      ........
        r60564 | amaury.forgeotdarc | 2008-02-04 00:15:32 +0100 (Mon, 04 Feb 2008) | 3 lines
      
        Correct test_mailbox on win32: since the test sets a custom 'colon' attribute
        to the main mailbox, copy it to secondary mailbox instances.
      ........
        r60565 | amaury.forgeotdarc | 2008-02-04 00:57:24 +0100 (Mon, 04 Feb 2008) | 2 lines
      
        Let test_socketserver pass on win32, which does not have AF_UNIX sockets.
      ........
        r60566 | jeffrey.yasskin | 2008-02-04 02:04:35 +0100 (Mon, 04 Feb 2008) | 2 lines
      
        Make int() and long() fall back to __trunc__(). See issue 2002.
      ........
        r60567 | christian.heimes | 2008-02-04 19:00:12 +0100 (Mon, 04 Feb 2008) | 3 lines
      
        Patch #1953
        I implemented the function sys._compact_freelists() and C API functions PyInt_/PyFloat_CompactFreeList() to compact the pre-allocated blocks of ints and floats. They allow the user to reduce the memory usage of a Python process that deals with lots of numbers.
        The patch also renames sys._cleartypecache to sys._clear_type_cache
      ........
      15ebc88d
  4. 03 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Fixed socketserver tests · fdb6bb56
      Christian Heimes yazdı
      fdb6bb56
    • Christian Heimes's avatar
      Merged revisions… · 292d351f
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      NOTE: I blocked the following revisions:
            svnmerge.py block -r 60521,60522,60528,60529,60534,60539
            The new tests must be merged with lots of manual work.
      
      ........
        r60493 | georg.brandl | 2008-02-01 12:59:08 +0100 (Fri, 01 Feb 2008) | 2 lines
      
        Update IPv6 RFC number.
      ........
        r60497 | georg.brandl | 2008-02-01 16:50:15 +0100 (Fri, 01 Feb 2008) | 2 lines
      
        Add link checker builder, written for GHOP by Thomas Lamb.
      ........
        r60500 | georg.brandl | 2008-02-01 19:08:09 +0100 (Fri, 01 Feb 2008) | 2 lines
      
        Rename batch file.
      ........
        r60504 | christian.heimes | 2008-02-01 19:49:26 +0100 (Fri, 01 Feb 2008) | 1 line
      
        More int -> pid_t.
      ........
        r60507 | georg.brandl | 2008-02-01 20:24:01 +0100 (Fri, 01 Feb 2008) | 2 lines
      
        Wording nit.
      ........
        r60510 | georg.brandl | 2008-02-01 21:45:33 +0100 (Fri, 01 Feb 2008) | 2 lines
      
        Update for latest sphinx latex writer.
      ........
        r60511 | raymond.hettinger | 2008-02-01 22:30:23 +0100 (Fri, 01 Feb 2008) | 1 line
      
        Issue #1996: float.as_integer_ratio() should return fraction in lowest terms.
      ........
        r60512 | raymond.hettinger | 2008-02-01 23:15:52 +0100 (Fri, 01 Feb 2008) | 1 line
      
        Integer ratio should return ints instead of longs whereever possible.
      ........
        r60513 | raymond.hettinger | 2008-02-01 23:22:50 +0100 (Fri, 01 Feb 2008) | 1 line
      
        labs() takes a long for an input.
      ........
        r60514 | raymond.hettinger | 2008-02-01 23:42:59 +0100 (Fri, 01 Feb 2008) | 1 line
      
        Test round-trip on float.as_integer_ratio() and float.__truediv__().
      ........
        r60515 | marc-andre.lemburg | 2008-02-01 23:58:17 +0100 (Fri, 01 Feb 2008) | 3 lines
      
        Bump distutils version number to match Python version.
      ........
        r60516 | raymond.hettinger | 2008-02-02 00:12:19 +0100 (Sat, 02 Feb 2008) | 1 line
      
        Fix int/long typecase.  Add check for non-binary floating point.
      ........
        r60517 | raymond.hettinger | 2008-02-02 00:45:44 +0100 (Sat, 02 Feb 2008) | 1 line
      
        Add protection from weirdness while scaling the mantissa to an integer.
      ........
        r60518 | raymond.hettinger | 2008-02-02 06:11:40 +0100 (Sat, 02 Feb 2008) | 1 line
      
        Simpler solution to handling non-IEEE 754 environments.
      ........
        r60519 | raymond.hettinger | 2008-02-02 06:24:44 +0100 (Sat, 02 Feb 2008) | 1 line
      
        Neaten-up a bit.
      ........
        r60520 | georg.brandl | 2008-02-02 10:56:20 +0100 (Sat, 02 Feb 2008) | 2 lines
      
        Amendments to the urllib2 docs, written for GHOP by Thomas Lamb.
      ........
        r60525 | georg.brandl | 2008-02-02 11:49:58 +0100 (Sat, 02 Feb 2008) | 3 lines
      
        Add email example how to send a multipart message.
        Written for GHOP by Martin Matejek.
      ........
        r60526 | georg.brandl | 2008-02-02 12:05:00 +0100 (Sat, 02 Feb 2008) | 2 lines
      
        Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen.
      ........
        r60527 | georg.brandl | 2008-02-02 12:05:34 +0100 (Sat, 02 Feb 2008) | 2 lines
      
        Add GHOP contributor.
      ........
        r60530 | mark.dickinson | 2008-02-02 18:16:13 +0100 (Sat, 02 Feb 2008) | 2 lines
      
        Make the Rational constructor accept '3.' and '.2' as well as '3.2'.
      ........
        r60531 | neal.norwitz | 2008-02-02 19:52:51 +0100 (Sat, 02 Feb 2008) | 1 line
      
        Update the leaky tests (ie, ignore these tests if they report leaks).  This version has been running for a while.
      ........
        r60533 | skip.montanaro | 2008-02-02 20:11:57 +0100 (Sat, 02 Feb 2008) | 7 lines
      
        Split the refleak mail body into two parts, the first being those failing
        tests which are deemed more important issues, the second those which are
        known to have difficult to solve problems and are generally expected to
        leak.  Hopefully this doesn't break the script...
      ........
        r60535 | georg.brandl | 2008-02-03 01:04:50 +0100 (Sun, 03 Feb 2008) | 3 lines
      
        Wait for a delay before reaping children -- this should fix the
        test_socketserver failures on several platforms.
      ........
        r60536 | brett.cannon | 2008-02-03 03:07:55 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Fix a minor typo.
      ........
        r60537 | brett.cannon | 2008-02-03 03:08:45 +0100 (Sun, 03 Feb 2008) | 3 lines
      
        Directories from CPPFLAGS and LDFLAGS were being added in the reverse order for
        searches as to how they were listed in the environment variable.
      ........
        r60538 | brett.cannon | 2008-02-03 03:34:14 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Remove extra tick marks and add a missing closing parenthesis.
      ........
        r60540 | andrew.macintyre | 2008-02-03 07:58:06 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Update OS/2 EMX build bits for 2.6.
      ........
        r60541 | andrew.macintyre | 2008-02-03 08:01:11 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Rename module definition file to reflect v2.6.
      ........
        r60542 | andrew.macintyre | 2008-02-03 08:07:31 +0100 (Sun, 03 Feb 2008) | 6 lines
      
        The wrapper function is supposed to be for spawnvpe() so that's
        what we should call [this wrapper only available on OS/2].
      
        Backport candidate to 2.5.
      ........
        r60544 | gregory.p.smith | 2008-02-03 08:20:53 +0100 (Sun, 03 Feb 2008) | 6 lines
      
        Merge this fix from the pybsddb tree:
        r293 | jcea | 2008-01-31 01:08:19 -0800 (Thu, 31 Jan 2008) | 4 lines
      
        Solved memory leak when using cursors with
        databases without environment.
      ........
        r60546 | gregory.p.smith | 2008-02-03 09:01:46 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        remove a repeated occurance of a hardcoded berkeleydb library version number
      ........
        r60549 | brett.cannon | 2008-02-03 10:59:21 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Add an entry for r60537.
      ........
        r60550 | georg.brandl | 2008-02-03 13:29:00 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        #2003: fix sentence.
      ........
        r60551 | christian.heimes | 2008-02-03 15:34:18 +0100 (Sun, 03 Feb 2008) | 2 lines
      
        Fixed paths to Windows build directories in build_ext.py
        Use vsbuild instead of devenv in build.bat and _bsddb.vcproj
      ........
      292d351f
  5. 02 Şub, 2008 2 kayıt (commit)
  6. 01 Şub, 2008 7 kayıt (commit)
  7. 31 Ock, 2008 5 kayıt (commit)
    • Christian Heimes's avatar
      svnmerge.py block -r60480 · db0a9b37
      Christian Heimes yazdı
      db0a9b37
    • Christian Heimes's avatar
      Fixed multiple reinitialization of the Python interpreter. The small int list in… · dfc12edb
      Christian Heimes yazdı
      Fixed multiple reinitialization of the Python interpreter. The small int list in longobject.c has caused a seg fault during the third finalization.
      dfc12edb
    • Christian Heimes's avatar
      Merged revisions 60441-60474 via svnmerge from · 7b3ce6a1
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60441 | christian.heimes | 2008-01-30 12:46:00 +0100 (Wed, 30 Jan 2008) | 1 line
      
        Removed unused var
      ........
        r60448 | christian.heimes | 2008-01-30 18:21:22 +0100 (Wed, 30 Jan 2008) | 1 line
      
        Fixed some references leaks in sys.
      ........
        r60450 | christian.heimes | 2008-01-30 19:58:29 +0100 (Wed, 30 Jan 2008) | 1 line
      
        The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize().
      ........
        r60463 | raymond.hettinger | 2008-01-30 23:17:31 +0100 (Wed, 30 Jan 2008) | 1 line
      
        Update itertool recipes
      ........
        r60464 | christian.heimes | 2008-01-30 23:54:18 +0100 (Wed, 30 Jan 2008) | 1 line
      
        Bug #1234: Fixed semaphore errors on AIX 5.2
      ........
        r60469 | raymond.hettinger | 2008-01-31 02:38:15 +0100 (Thu, 31 Jan 2008) | 6 lines
      
        Fix defect in __ixor__ which would get the wrong
        answer if the input iterable had a duplicate element
        (two calls to toggle() reverse each other).  Borrow
        the correct code from sets.py.
      ........
        r60470 | raymond.hettinger | 2008-01-31 02:42:11 +0100 (Thu, 31 Jan 2008) | 1 line
      
        Missing return
      ........
        r60471 | jeffrey.yasskin | 2008-01-31 08:44:11 +0100 (Thu, 31 Jan 2008) | 4 lines
      
        Added more documentation on how mixed-mode arithmetic should be implemented. I
        also noticed and fixed a bug in Rational's forward operators (they were
        claiming all instances of numbers.Rational instead of just the concrete types).
      ........
      7b3ce6a1
    • Raymond Hettinger's avatar
    • Christian Heimes's avatar
      Fixed r60466 · db96789b
      Christian Heimes yazdı
      db96789b
  8. 30 Ock, 2008 1 kayıt (commit)