1. 09 Şub, 2008 5 kayıt (commit)
    • Raymond Hettinger's avatar
      7aebb64b
    • Raymond Hettinger's avatar
      Merge r60679 · 74b6495b
      Raymond Hettinger yazdı
      74b6495b
    • Christian Heimes's avatar
      Merged revisions… · 77c02ebf
      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-60678 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60618 | walter.doerwald | 2008-02-06 15:31:55 +0100 (Wed, 06 Feb 2008) | 6 lines
      
        Remove month parameter from Calendar.yeardatescalendar(),
        Calendar.yeardays2calendar() and Calendar.yeardayscalendar() as the methods
        don't have such a parameter. Fixes issue #2017.
      
        Rewrap content to 80 chars.
      ........
        r60622 | facundo.batista | 2008-02-06 20:28:49 +0100 (Wed, 06 Feb 2008) | 4 lines
      
      
        Fixes issue 1959. Converted tests to unittest.
        Thanks Giampaolo Rodola.
      ........
        r60626 | thomas.heller | 2008-02-06 21:29:17 +0100 (Wed, 06 Feb 2008) | 3 lines
      
        Fixed refcounts and error handling.
      
        Should not be merged to py3k branch.
      ........
        r60630 | mark.dickinson | 2008-02-06 23:10:50 +0100 (Wed, 06 Feb 2008) | 4 lines
      
        Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN
        raise InvalidOperation (and return False if InvalidOperation is trapped).
      ........
        r60632 | mark.dickinson | 2008-02-06 23:25:16 +0100 (Wed, 06 Feb 2008) | 2 lines
      
        Remove incorrect usage of :const: in documentation.
      ........
        r60634 | georg.brandl | 2008-02-07 00:45:51 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Revert accidental changes to test_queue in r60605.
      ........
        r60636 | raymond.hettinger | 2008-02-07 01:54:20 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Issue 2025:  Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence.
      ........
        r60637 | mark.dickinson | 2008-02-07 02:14:23 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Fix broken link in decimal documentation.
      ........
        r60638 | mark.dickinson | 2008-02-07 02:42:06 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        IEEE 754 should be IEEE 854;  give precise reference for
        comparisons involving NaNs.
      ........
        r60639 | raymond.hettinger | 2008-02-07 03:12:52 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Return ints instead of longs for tuple.count() and tuple.index().
      ........
        r60640 | raymond.hettinger | 2008-02-07 04:10:33 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Merge 60627.
      ........
        r60641 | raymond.hettinger | 2008-02-07 04:25:46 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Merge r60628, r60631, and r60633.  Register UserList and UserString will the appropriate ABCs.
      ........
        r60642 | brett.cannon | 2008-02-07 08:47:31 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Cast a struct to a void pointer so as to do a type-safe pointer comparison
        (mistmatch found by clang).
      ........
        r60643 | brett.cannon | 2008-02-07 09:04:07 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Remove unnecessary curly braces around an int literal.
      ........
        r60644 | andrew.kuchling | 2008-02-07 12:43:47 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Update URL
      ........
        r60645 | facundo.batista | 2008-02-07 17:16:29 +0100 (Thu, 07 Feb 2008) | 4 lines
      
      
        Fixes issue 2026.  Tests converted to unittest.  Thanks
        Giampaolo Rodola.
      ........
        r60646 | christian.heimes | 2008-02-07 18:15:30 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet.
      ........
        r60648 | facundo.batista | 2008-02-07 20:06:52 +0100 (Thu, 07 Feb 2008) | 6 lines
      
      
        Fixes Issue 1401. When redirected, a possible POST get converted
        to GET, so it loses its payload. So, it also must lose the
        headers related to the payload (if it has no content any more,
        it shouldn't indicate content length and type).
      ........
        r60649 | walter.doerwald | 2008-02-07 20:30:22 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Clarify that the output of TextCalendar.formatmonth() and
        TextCalendar.formatyear() for custom instances won't be influenced by calls
        to the module global setfirstweekday() function. Fixes #2018.
      ........
        r60651 | walter.doerwald | 2008-02-07 20:48:34 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Fix documentation for Calendar.iterweekdays(): firstweekday is a property.
        Fixes second part of #2018.
      ........
        r60653 | walter.doerwald | 2008-02-07 20:57:32 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Fix typo in docstring for Calendar.itermonthdays().
      ........
        r60655 | raymond.hettinger | 2008-02-07 21:04:37 +0100 (Thu, 07 Feb 2008) | 1 line
      
        The float conversion recipe is simpler in Py2.6
      ........
        r60657 | raymond.hettinger | 2008-02-07 21:10:49 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Fix typo
      ........
        r60660 | brett.cannon | 2008-02-07 23:27:10 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Make sure a switch statement does not have repetitive case statements.
        Error found through LLVM post-2.1 svn.
      ........
        r60661 | christian.heimes | 2008-02-08 01:11:31 +0100 (Fri, 08 Feb 2008) | 1 line
      
        Deallocate content of the dict free list on interpreter shutdown
      ........
        r60662 | christian.heimes | 2008-02-08 01:14:34 +0100 (Fri, 08 Feb 2008) | 1 line
      
        Use prefix decrement
      ........
        r60663 | amaury.forgeotdarc | 2008-02-08 01:56:02 +0100 (Fri, 08 Feb 2008) | 5 lines
      
        issue 2045: Infinite recursion when printing a subclass of defaultdict,
        if default_factory is set to a bound method.
      
        Will backport.
      ........
        r60667 | jeffrey.yasskin | 2008-02-08 07:45:40 +0100 (Fri, 08 Feb 2008) | 2 lines
      
        Oops! 2.6's Rational.__ne__ didn't work.
      ........
        r60671 | hyeshik.chang | 2008-02-08 18:10:20 +0100 (Fri, 08 Feb 2008) | 2 lines
      
        Update big5hkscs codec to conform to the HKSCS:2004 revision.
      ........
        r60673 | raymond.hettinger | 2008-02-08 23:30:04 +0100 (Fri, 08 Feb 2008) | 4 lines
      
        Remove unnecessary modulo division.
        The preceding test guarantees that 0 <= i < len.
      ........
        r60674 | raymond.hettinger | 2008-02-09 00:02:27 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Speed-up __iter__() mixin method.
      ........
        r60675 | raymond.hettinger | 2008-02-09 00:34:21 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Fill-in missing Set comparisons
      ........
        r60677 | raymond.hettinger | 2008-02-09 00:57:06 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Add advice on choosing between DictMixin and MutableMapping
      ........
      77c02ebf
    • Raymond Hettinger's avatar
      Finish the collections ABC table. · 409fb2c8
      Raymond Hettinger yazdı
      Identify which abstract methods need to be defined.
      Show the inheritance hierarchy.
      List all of the mixin methods provided automatically.
      409fb2c8
    • Raymond Hettinger's avatar
      Merge r60674 an 60675. · 71909423
      Raymond Hettinger yazdı
      71909423
  2. 08 Şub, 2008 2 kayıt (commit)
  3. 07 Şub, 2008 2 kayıt (commit)
  4. 06 Şub, 2008 10 kayıt (commit)
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      6cc14a05
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      Fix-up the _from_iterable() method to return instances of the subclass where it is used. · 8284c4a7
      Raymond Hettinger yazdı
      In its previous form, it always returned instance of frozenset which makes this ABC
      nearly useless as a mixin.  In its new form, it needs to be able to assume that the
      constructor will take a frozenset input.  This will usually be true.  If it is not,
      then only one method (this one) will need to be overriden by the subclass to let
      it know about the unique constructor signature.  Will add info on this to the docs.
      8284c4a7
    • Raymond Hettinger's avatar
      Fix-up the collections docs. · ebcee3f9
      Raymond Hettinger yazdı
      * Start filling in detail and examples for ABCs
      * Fix old reference to IterableUserDict.
      * Neaten-up the introduction.
      ebcee3f9
    • 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
  5. 05 Şub, 2008 11 kayıt (commit)
  6. 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
  7. 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
  8. 02 Şub, 2008 1 kayıt (commit)