1. 21 Aug, 2011 1 commit
  2. 06 May, 2011 1 commit
  3. 16 Mar, 2011 1 commit
  4. 29 Jan, 2011 1 commit
  5. 15 Dec, 2010 1 commit
  6. 05 May, 2010 4 commits
  7. 29 Apr, 2010 1 commit
  8. 28 Apr, 2010 1 commit
  9. 23 Apr, 2010 1 commit
  10. 21 Apr, 2010 1 commit
  11. 20 Apr, 2010 3 commits
  12. 19 Apr, 2010 3 commits
  13. 22 Mar, 2010 2 commits
  14. 23 Feb, 2010 2 commits
  15. 05 Jun, 2009 1 commit
  16. 01 May, 2009 1 commit
  17. 20 Feb, 2009 1 commit
  18. 29 Jan, 2009 1 commit
  19. 12 Aug, 2008 1 commit
    • Georg Brandl's avatar
      Merged revisions... · 6aa2d1fe
      Georg Brandl authored
      Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r65459 | gregory.p.smith | 2008-08-04 00:13:29 +0000 (Mon, 04 Aug 2008) | 4 lines
      
        - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword
          argument in python 2.5, this broke code that subclassed Popen to include its
          own poll method.  Fixed my moving _deadstate to an _internal_poll method.
      ........
        r65472 | andrew.kuchling | 2008-08-04 01:43:43 +0000 (Mon, 04 Aug 2008) | 3 lines
      
        Bug 3228: Explicitly supply the file mode to avoid creating executable files,
        and add corresponding tests.
        Possible 2.5 backport candidate
      ........
        r65481 | gregory.p.smith | 2008-08-04 07:33:37 +0000 (Mon, 04 Aug 2008) | 22 lines
      
        Adds a sanity check to avoid a *very rare* infinite loop due to a corrupt tls
        key list data structure in the thread startup path.
      
        This change is a companion to r60148 which already successfully dealt with a
        similar issue on thread shutdown.
      
        In particular this loop has been observed happening from this call path:
         #0  in find_key ()
         #1  in PyThread_set_key_value ()
         #2  in _PyGILState_NoteThreadState ()
         #3  in PyThreadState_New ()
         #4  in t_bootstrap ()
         #5  in pthread_start_thread ()
      
        I don't know how this happens but it does, *very* rarely.  On more than
        one hardware platform.  I have not been able to reproduce it manually.
        (A flaky mutex implementation on the system in question is one hypothesis).
      
        As with r60148, the spinning we managed to observe in the wild was due to a
        single list element pointing back upon itself.
      ........
        r65518 | mark.dickinson | 2008-08-04 21:30:09 +0000 (Mon, 04 Aug 2008) | 7 lines
      
        Issue #1481296: (again!) Make conversion of a float NaN to an int or
        long raise ValueError instead of returning 0.  Also, change the error
        message for conversion of an infinity to an integer, replacing 'long' by
        'integer', so that it's appropriate for both long(float('inf')) and
        int(float('inf')).
      ........
        r65536 | andrew.kuchling | 2008-08-05 01:00:57 +0000 (Tue, 05 Aug 2008) | 1 line
      
        Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, check for having os.stat available
      ........
        r65581 | guido.van.rossum | 2008-08-07 18:51:38 +0000 (Thu, 07 Aug 2008) | 3 lines
      
        Patch by Ian Charnas from issue 3517.
        Add F_FULLFSYNC if it exists (OS X only so far).
      ........
        r65609 | antoine.pitrou | 2008-08-09 17:22:25 +0000 (Sat, 09 Aug 2008) | 3 lines
      
        #3205: bz2 iterator fails silently on MemoryError
      ........
        r65637 | georg.brandl | 2008-08-11 09:07:59 +0000 (Mon, 11 Aug 2008) | 3 lines
      
        - Issue #3537: Fix an assertion failure when an empty but presized dict
          object was stored in the freelist.
      ........
        r65641 | jesse.noller | 2008-08-11 14:28:07 +0000 (Mon, 11 Aug 2008) | 2 lines
      
        Remove the fqdn call for issue 3270
      ........
        r65644 | antoine.pitrou | 2008-08-11 17:21:36 +0000 (Mon, 11 Aug 2008) | 3 lines
      
        #3134: shutil referenced undefined WindowsError symbol
      ........
        r65645 | jesse.noller | 2008-08-11 19:00:15 +0000 (Mon, 11 Aug 2008) | 2 lines
      
        Fix the connection refused error part of issue 3419, use errno module instead of a static list of possible connection refused messages.
      ........
      6aa2d1fe
  20. 16 Jul, 2008 1 commit
    • Georg Brandl's avatar
      Merged revisions... · 2ee470f7
      Georg Brandl authored
      Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64722 | georg.brandl | 2008-07-05 12:13:36 +0200 (Sat, 05 Jul 2008) | 4 lines
      
        #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.
      
        This is a new feature, but Barry authorized adding it in the beta period.
      ........
        r64729 | mark.dickinson | 2008-07-05 13:33:52 +0200 (Sat, 05 Jul 2008) | 5 lines
      
        Issue 3188: accept float('infinity') as well as float('inf').  This
        makes the float constructor behave in the same way as specified
        by various other language standards, including C99, IEEE 754r,
        and the IBM Decimal standard.
      ........
        r64753 | gregory.p.smith | 2008-07-06 05:35:58 +0200 (Sun, 06 Jul 2008) | 4 lines
      
        - Issue #2862: Make int and float freelist management consistent with other
          freelists.  Changes their CompactFreeList apis into ClearFreeList apis and
          calls them via gc.collect().
      ........
        r64845 | raymond.hettinger | 2008-07-10 16:03:19 +0200 (Thu, 10 Jul 2008) | 1 line
      
        Issue 3301:  Bisect functions behaved badly when lo was negative.
      ........
        r64846 | raymond.hettinger | 2008-07-10 16:34:57 +0200 (Thu, 10 Jul 2008) | 1 line
      
        Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments.
      ........
        r64849 | andrew.kuchling | 2008-07-10 16:43:31 +0200 (Thu, 10 Jul 2008) | 1 line
      
        Wording changes
      ........
        r64871 | raymond.hettinger | 2008-07-11 14:00:21 +0200 (Fri, 11 Jul 2008) | 1 line
      
        Add cautionary note on the use of PySequence_Fast_ITEMS.
      ........
        r64880 | amaury.forgeotdarc | 2008-07-11 23:28:25 +0200 (Fri, 11 Jul 2008) | 5 lines
      
        #3317 in zipfile module, restore the previous names of global variables:
        some applications relied on them.
      
        Also remove duplicated lines.
      ........
        r64881 | amaury.forgeotdarc | 2008-07-11 23:45:06 +0200 (Fri, 11 Jul 2008) | 3 lines
      
        #3342: In tracebacks, printed source lines were not indented since r62555.
        #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine.
      ........
        r64882 | josiah.carlson | 2008-07-12 00:17:14 +0200 (Sat, 12 Jul 2008) | 2 lines
      
        Fix for the AttributeError in test_asynchat.
      ........
        r64885 | josiah.carlson | 2008-07-12 01:26:59 +0200 (Sat, 12 Jul 2008) | 2 lines
      
        Fixed test for asyncore.
      ........
        r64888 | matthias.klose | 2008-07-12 09:51:48 +0200 (Sat, 12 Jul 2008) | 2 lines
      
        - Fix bashisms in Tools/faqwiz/move-faqwiz.sh
      ........
        r64897 | benjamin.peterson | 2008-07-12 22:16:19 +0200 (Sat, 12 Jul 2008) | 1 line
      
        fix various doc typos #3320
      ........
        r64900 | alexandre.vassalotti | 2008-07-13 00:06:53 +0200 (Sun, 13 Jul 2008) | 2 lines
      
        Fixed typo.
      ........
        r64901 | benjamin.peterson | 2008-07-13 01:41:19 +0200 (Sun, 13 Jul 2008) | 1 line
      
        #1778443 robotparser fixes from Aristotelis Mikropoulos
      ........
        r64915 | nick.coghlan | 2008-07-13 16:52:36 +0200 (Sun, 13 Jul 2008) | 1 line
      
        Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute)
      ........
        r64926 | martin.v.loewis | 2008-07-13 22:31:49 +0200 (Sun, 13 Jul 2008) | 2 lines
      
        Add turtle into the module index.
      ........
        r64927 | alexandre.vassalotti | 2008-07-13 22:42:44 +0200 (Sun, 13 Jul 2008) | 3 lines
      
        Issue #3274: Use a less common identifier for the temporary variable
        in Py_CLEAR().
      ........
        r64928 | andrew.kuchling | 2008-07-13 23:43:25 +0200 (Sun, 13 Jul 2008) | 1 line
      
        Re-word
      ........
        r64929 | andrew.kuchling | 2008-07-13 23:43:52 +0200 (Sun, 13 Jul 2008) | 1 line
      
        Add various items; move ctypes items into a subsection of their own
      ........
        r64938 | andrew.kuchling | 2008-07-14 02:35:32 +0200 (Mon, 14 Jul 2008) | 1 line
      
        Typo fixes
      ........
        r64939 | andrew.kuchling | 2008-07-14 02:40:55 +0200 (Mon, 14 Jul 2008) | 1 line
      
        Typo fix
      ........
        r64940 | andrew.kuchling | 2008-07-14 03:18:16 +0200 (Mon, 14 Jul 2008) | 1 line
      
        Typo fix
      ........
        r64941 | andrew.kuchling | 2008-07-14 03:18:31 +0200 (Mon, 14 Jul 2008) | 1 line
      
        Expand the multiprocessing section
      ........
        r64944 | gregory.p.smith | 2008-07-14 08:06:48 +0200 (Mon, 14 Jul 2008) | 7 lines
      
        Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the child
        process rather than both parent and child.
      
        Does anyone actually use fork1()?  It appears to be a Solaris thing
        but if Python is built with pthreads on Solaris, fork1() and fork()
        should be the same.
      ........
        r64961 | jesse.noller | 2008-07-15 15:47:33 +0200 (Tue, 15 Jul 2008) | 1 line
      
        multiprocessing/connection.py patch to remove fqdn oddness for issue 3270
      ........
        r64966 | nick.coghlan | 2008-07-15 17:40:22 +0200 (Tue, 15 Jul 2008) | 1 line
      
        Add missing NEWS entry for r64962
      ........
        r64973 | jesse.noller | 2008-07-15 20:29:18 +0200 (Tue, 15 Jul 2008) | 1 line
      
        Revert 3270 patch: self._address is in pretty widespread use, need to revisit
      ........
      2ee470f7
  21. 18 Mar, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 61520,61523-61528,61532 via svnmerge from · ada8c3b0
      Christian Heimes authored
      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
  22. 20 Jan, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 60124-60142 via svnmerge from · 9bd667ad
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60131 | georg.brandl | 2008-01-20 12:13:29 +0100 (Sun, 20 Jan 2008) | 3 lines
      
        #1351692: in pprint, always call format() for dict and list items to enable
        custom formatting of contents via subclassing PrettyPrinter.
      ........
        r60133 | georg.brandl | 2008-01-20 12:43:03 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #1178141: add addinfourl.code to get http status code from urllib.
      ........
        r60134 | georg.brandl | 2008-01-20 13:05:43 +0100 (Sun, 20 Jan 2008) | 4 lines
      
        #856047: respect the ``no_proxy`` env var when checking for proxies
        in urllib and using the other ``_proxy`` env vars.
        Original patch by Donovan Baarda.
      ........
        r60135 | georg.brandl | 2008-01-20 13:18:17 +0100 (Sun, 20 Jan 2008) | 4 lines
      
        #1664522: in urllib, don't read non-existing directories in ftp mode,
        returning a 0-byte file -- raise an IOError instead.
        Original patch from Phil Knirsch.
      ........
        r60136 | georg.brandl | 2008-01-20 13:57:47 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #799369: document possible sys.platform values.
      ........
        r60137 | georg.brandl | 2008-01-20 14:08:37 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #652749: document the constants added to the builtins by site.py.
      ........
        r60138 | georg.brandl | 2008-01-20 14:59:46 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #1648: add sys.gettrace() and sys.getprofile().
      ........
        r60139 | georg.brandl | 2008-01-20 15:17:42 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #1669: don't allow shutil.rmtree() to be called on a symlink.
      ........
        r60140 | georg.brandl | 2008-01-20 15:20:02 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        Fix test_pyclbr after urllib change.
      ........
        r60141 | christian.heimes | 2008-01-20 15:28:28 +0100 (Sun, 20 Jan 2008) | 1 line
      
        Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :)
      ........
        r60142 | georg.brandl | 2008-01-20 15:31:27 +0100 (Sun, 20 Jan 2008) | 2 lines
      
        #1876: fix typos in test_operator.
      ........
      9bd667ad
  23. 30 Aug, 2007 1 commit
  24. 23 Feb, 2007 1 commit
    • Thomas Wouters's avatar
      Merged revisions 53623-53858 via svnmerge from · cf297e46
      Thomas Wouters authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r53624 | peter.astrand | 2007-02-02 20:06:36 +0100 (Fri, 02 Feb 2007) | 1 line
      
        We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead.
      ........
        r53635 | kurt.kaiser | 2007-02-05 07:03:18 +0100 (Mon, 05 Feb 2007) | 2 lines
      
        Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
      ........
        r53641 | kurt.kaiser | 2007-02-06 00:02:16 +0100 (Tue, 06 Feb 2007) | 5 lines
      
        1. Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
           Suggested solution by Christos Georgiou, Bug 791968.
        2. Clean up tests, were not failing when they should have been.
        4. Remove some camelcase and an unneeded try/except block.
      ........
        r53644 | kurt.kaiser | 2007-02-06 04:21:40 +0100 (Tue, 06 Feb 2007) | 2 lines
      
        Clean up ModifiedInterpreter.runcode() structure
      ........
        r53646 | peter.astrand | 2007-02-06 16:37:50 +0100 (Tue, 06 Feb 2007) | 1 line
      
        Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport.
      ........
        r53648 | lars.gustaebel | 2007-02-06 19:38:13 +0100 (Tue, 06 Feb 2007) | 4 lines
      
        Patch #1652681: create nonexistent files in append mode and
        allow appending to empty files.
      ........
        r53649 | kurt.kaiser | 2007-02-06 20:09:43 +0100 (Tue, 06 Feb 2007) | 4 lines
      
        Updated patch (CodeContext.061217.patch) to
        [ 1362975 ] CodeContext - Improved text indentation
        Tal Einat 16Dec06
      ........
        r53650 | kurt.kaiser | 2007-02-06 20:21:19 +0100 (Tue, 06 Feb 2007) | 2 lines
      
        narrow exception per [ 1540849 ] except too broad
      ........
        r53653 | kurt.kaiser | 2007-02-07 04:39:41 +0100 (Wed, 07 Feb 2007) | 4 lines
      
        [ 1621265 ] Auto-completion list placement
        Move AC window below input line unless not enough space, then put it above.
        Patch: Tal Einat
      ........
        r53654 | kurt.kaiser | 2007-02-07 09:07:13 +0100 (Wed, 07 Feb 2007) | 2 lines
      
        Handle AttributeError during calltip lookup
      ........
        r53656 | raymond.hettinger | 2007-02-07 21:08:22 +0100 (Wed, 07 Feb 2007) | 3 lines
      
        SF #1615701:  make d.update(m) honor __getitem__() and keys() in dict subclasses
      ........
        r53658 | raymond.hettinger | 2007-02-07 22:04:20 +0100 (Wed, 07 Feb 2007) | 1 line
      
        SF: 1397711 Set docs conflated immutable and hashable
      ........
        r53660 | raymond.hettinger | 2007-02-07 22:42:17 +0100 (Wed, 07 Feb 2007) | 1 line
      
        Check for a common user error with defaultdict().
      ........
        r53662 | raymond.hettinger | 2007-02-07 23:24:07 +0100 (Wed, 07 Feb 2007) | 1 line
      
        Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
      ........
        r53664 | raymond.hettinger | 2007-02-08 00:49:03 +0100 (Thu, 08 Feb 2007) | 1 line
      
        Silence compiler warning
      ........
        r53666 | raymond.hettinger | 2007-02-08 01:07:32 +0100 (Thu, 08 Feb 2007) | 1 line
      
        Do not let overflows in enumerate() and count() pass silently.
      ........
        r53668 | raymond.hettinger | 2007-02-08 01:50:39 +0100 (Thu, 08 Feb 2007) | 1 line
      
        Bypass set specific optimizations for set and frozenset subclasses.
      ........
        r53670 | raymond.hettinger | 2007-02-08 02:42:35 +0100 (Thu, 08 Feb 2007) | 1 line
      
        Fix docstring bug
      ........
        r53671 | martin.v.loewis | 2007-02-08 10:13:36 +0100 (Thu, 08 Feb 2007) | 3 lines
      
        Bug #1653736: Complain about keyword arguments to time.isoformat.
        Will backport to 2.5.
      ........
        r53679 | kurt.kaiser | 2007-02-08 23:58:18 +0100 (Thu, 08 Feb 2007) | 6 lines
      
        Corrected some bugs in AutoComplete.  Also, Page Up/Down in ACW implemented;
        mouse and cursor selection in ACWindow implemented; double Tab inserts current
        selection and closes ACW (similar to double-click and Return); scroll wheel now
        works in ACW.  Added AutoComplete instructions to IDLE Help.
      ........
        r53689 | martin.v.loewis | 2007-02-09 13:19:32 +0100 (Fri, 09 Feb 2007) | 3 lines
      
        Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
        Will backport.
      ........
        r53691 | martin.v.loewis | 2007-02-09 13:36:48 +0100 (Fri, 09 Feb 2007) | 4 lines
      
        Bug #1600860: Search for shared python library in LIBDIR, not
        lib/python/config, on "linux" and "gnu" systems.
        Will backport.
      ........
        r53693 | martin.v.loewis | 2007-02-09 13:58:49 +0100 (Fri, 09 Feb 2007) | 2 lines
      
        Update broken link. Will backport to 2.5.
      ........
        r53697 | georg.brandl | 2007-02-09 19:48:41 +0100 (Fri, 09 Feb 2007) | 2 lines
      
        Bug #1656078: typo in in profile docs.
      ........
        r53731 | brett.cannon | 2007-02-11 06:36:00 +0100 (Sun, 11 Feb 2007) | 3 lines
      
        Change a very minor inconsistency (that is purely cosmetic) in the AST
        definition.
      ........
        r53735 | skip.montanaro | 2007-02-11 19:24:37 +0100 (Sun, 11 Feb 2007) | 1 line
      
        fix trace.py --ignore-dir
      ........
        r53741 | brett.cannon | 2007-02-11 20:44:41 +0100 (Sun, 11 Feb 2007) | 3 lines
      
        Check in changed Python-ast.c from a cosmetic change to Python.asdl (in
        r53731).
      ........
        r53751 | brett.cannon | 2007-02-12 04:51:02 +0100 (Mon, 12 Feb 2007) | 5 lines
      
        Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c
        is specified at the top of the file.  Also add a note that Python/Python-ast.c
        needs to be committed separately after a change to the AST grammar to capture
        the revision number of the change (which is what __version__ is set to).
      ........
        r53752 | lars.gustaebel | 2007-02-12 10:25:53 +0100 (Mon, 12 Feb 2007) | 3 lines
      
        Bug #1656581: Point out that external file objects are supposed to be
        at position 0.
      ........
        r53754 | martin.v.loewis | 2007-02-12 13:21:10 +0100 (Mon, 12 Feb 2007) | 3 lines
      
        Patch 1463026: Support default namespace in XMLGenerator.
        Fixes #847665. Will backport.
      ........
        r53757 | armin.rigo | 2007-02-12 17:23:24 +0100 (Mon, 12 Feb 2007) | 4 lines
      
        Fix the line to what is my guess at the original author's meaning.
        (The line has no effect anyway, but is present because it's
        customary call the base class __init__).
      ........
        r53763 | martin.v.loewis | 2007-02-13 09:34:45 +0100 (Tue, 13 Feb 2007) | 3 lines
      
        Patch #685268: Consider a package's __path__ in imputil.
        Will backport.
      ........
        r53765 | martin.v.loewis | 2007-02-13 10:49:38 +0100 (Tue, 13 Feb 2007) | 2 lines
      
        Patch #698833: Support file decryption in zipfile.
      ........
        r53766 | martin.v.loewis | 2007-02-13 11:10:39 +0100 (Tue, 13 Feb 2007) | 3 lines
      
        Patch #1517891: Make 'a' create the file if it doesn't exist.
        Fixes #1514451.
      ........
        r53767 | martin.v.loewis | 2007-02-13 13:08:24 +0100 (Tue, 13 Feb 2007) | 3 lines
      
        Bug #1658794: Remove extraneous 'this'.
        Will backport to 2.5.
      ........
        r53769 | martin.v.loewis | 2007-02-13 13:14:19 +0100 (Tue, 13 Feb 2007) | 3 lines
      
        Patch #1657276: Make NETLINK_DNRTMSG conditional.
        Will backport.
      ........
        r53771 | lars.gustaebel | 2007-02-13 17:09:24 +0100 (Tue, 13 Feb 2007) | 4 lines
      
        Patch #1647484: Renamed GzipFile's filename attribute to name. The
        filename attribute is still accessible as a property that emits a
        DeprecationWarning.
      ........
        r53772 | lars.gustaebel | 2007-02-13 17:24:00 +0100 (Tue, 13 Feb 2007) | 3 lines
      
        Strip the '.gz' extension from the filename that is written to the
        gzip header.
      ........
        r53774 | martin.v.loewis | 2007-02-14 11:07:37 +0100 (Wed, 14 Feb 2007) | 2 lines
      
        Patch #1432399: Add HCI sockets.
      ........
        r53775 | martin.v.loewis | 2007-02-14 12:30:07 +0100 (Wed, 14 Feb 2007) | 2 lines
      
        Update 1432399 to removal of _BT_SOCKADDR_MEMB.
      ........
        r53776 | martin.v.loewis | 2007-02-14 12:30:56 +0100 (Wed, 14 Feb 2007) | 3 lines
      
        Ignore directory time stamps when considering
        whether to rerun libffi configure.
      ........
        r53778 | lars.gustaebel | 2007-02-14 15:45:12 +0100 (Wed, 14 Feb 2007) | 4 lines
      
        A missing binary mode in AppendTest caused failures in Windows
        Buildbot.
      ........
        r53782 | martin.v.loewis | 2007-02-15 10:51:35 +0100 (Thu, 15 Feb 2007) | 2 lines
      
        Patch #1397848: add the reasoning behind no-resize-on-shrinkage.
      ........
        r53783 | georg.brandl | 2007-02-15 11:37:59 +0100 (Thu, 15 Feb 2007) | 2 lines
      
        Make functools.wraps() docs a bit clearer.
      ........
        r53785 | georg.brandl | 2007-02-15 12:29:04 +0100 (Thu, 15 Feb 2007) | 2 lines
      
        Patch #1494140: Add documentation for the new struct.Struct object.
      ........
        r53787 | georg.brandl | 2007-02-15 12:29:55 +0100 (Thu, 15 Feb 2007) | 2 lines
      
        Add missing \versionadded.
      ........
        r53800 | brett.cannon | 2007-02-15 23:54:39 +0100 (Thu, 15 Feb 2007) | 11 lines
      
        Update the encoding package's search function to use absolute imports when
        calling __import__.  This helps make the expected search locations for encoding
        modules be more explicit.
      
        One could use an explicit value for __path__ when making the call to __import__
        to force the exact location searched for encodings.  This would give the most
        strict search path possible if one is worried about malicious code being
        imported.  The unfortunate side-effect of that is that if __path__ was modified
        on 'encodings' on purpose in a safe way it would not be picked up in future
        __import__ calls.
      ........
        r53801 | brett.cannon | 2007-02-16 20:33:01 +0100 (Fri, 16 Feb 2007) | 2 lines
      
        Make the __import__ call in encodings.__init__ absolute with a level 0 call.
      ........
        r53809 | vinay.sajip | 2007-02-16 23:36:24 +0100 (Fri, 16 Feb 2007) | 1 line
      
        Minor fix for currentframe (SF #1652788).
      ........
        r53818 | raymond.hettinger | 2007-02-19 03:03:19 +0100 (Mon, 19 Feb 2007) | 3 lines
      
        Extend work on revision 52962:  Eliminate redundant calls to PyObject_Hash().
      ........
        r53820 | raymond.hettinger | 2007-02-19 05:08:43 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Add merge() function to heapq.
      ........
        r53821 | raymond.hettinger | 2007-02-19 06:28:28 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Add tie-breaker count to preserve sort stability.
      ........
        r53822 | raymond.hettinger | 2007-02-19 07:59:32 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Use C heapreplace() instead of slower _siftup() in pure python.
      ........
        r53823 | raymond.hettinger | 2007-02-19 08:30:21 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Add test for merge stability
      ........
        r53824 | raymond.hettinger | 2007-02-19 10:14:10 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Provide an example of defaultdict with non-zero constant factory function.
      ........
        r53825 | lars.gustaebel | 2007-02-19 10:54:47 +0100 (Mon, 19 Feb 2007) | 2 lines
      
        Moved misplaced news item.
      ........
        r53826 | martin.v.loewis | 2007-02-19 11:55:19 +0100 (Mon, 19 Feb 2007) | 3 lines
      
        Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()
        functions on platforms where the underlying system calls are available.
      ........
        r53827 | raymond.hettinger | 2007-02-19 19:15:04 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Fixup docstrings for merge().
      ........
        r53829 | raymond.hettinger | 2007-02-19 21:44:04 +0100 (Mon, 19 Feb 2007) | 1 line
      
        Fixup set/dict interoperability.
      ........
        r53837 | raymond.hettinger | 2007-02-21 06:20:38 +0100 (Wed, 21 Feb 2007) | 1 line
      
        Add itertools.izip_longest().
      ........
        r53838 | raymond.hettinger | 2007-02-21 18:22:05 +0100 (Wed, 21 Feb 2007) | 1 line
      
        Remove filler struct item and fix leak.
      ........
      cf297e46
  25. 10 Jan, 2007 1 commit
  26. 11 Aug, 2006 1 commit
    • Thomas Wouters's avatar
      Merged revisions 46753-51188 via svnmerge from · 0e3f591a
      Thomas Wouters authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r46755 | brett.cannon | 2006-06-08 18:23:04 +0200 (Thu, 08 Jun 2006) | 4 lines
      
        Make binascii.hexlify() use s# for its arguments instead of t# to actually
        match its documentation stating it accepts any read-only buffer.
      ........
        r46757 | brett.cannon | 2006-06-08 19:00:45 +0200 (Thu, 08 Jun 2006) | 8 lines
      
        Buffer objects would return the read or write buffer for a wrapped object when
        the char buffer was requested.  Now it actually returns the char buffer if
        available or raises a TypeError if it isn't (as is raised for the other buffer
        types if they are not present but requested).
      
        Not a backport candidate since it does change semantics of the buffer object
        (although it could be argued this is enough of a bug to bother backporting).
      ........
        r46760 | andrew.kuchling | 2006-06-09 03:10:17 +0200 (Fri, 09 Jun 2006) | 1 line
      
        Update functools section
      ........
        r46762 | tim.peters | ...
      0e3f591a
  27. 27 May, 2006 1 commit
    • Thomas Wouters's avatar
      Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. · 477c8d5e
      Thomas Wouters authored
      Inherits test_gzip/test_tarfile failures on 64-bit platforms from the trunk,
      but I don't want the merge to hang around too long (even though the regular
      p3yk-contributors are/have been busy with other things.)
      
      Merged revisions 45621-46490 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r45621 | george.yoshida | 2006-04-21 18:34:17 +0200 (Fri, 21 Apr 2006) | 2 lines
      
        Correct the grammar
      ........
        r45622 | tim.peters | 2006-04-21 18:34:54 +0200 (Fri, 21 Apr 2006) | 2 lines
      
        Whitespace normalization.
      ........
        r45624 | thomas.heller | 2006-04-21 18:48:56 +0200 (Fri, 21 Apr 2006) | 1 line
      
        Merge in changes from ctypes 0.9.9.6 upstream version.
      ........
        r45625 | thomas.heller | 2006-04-21 18:51:04 +0200 (Fri, 21 Apr 2006) | 1 line
      
        Merge in changes from ctypes 0.9.9.6 upstream version.
      ........
        r45630 | thomas.heller | 2006-04-21 20:29:17 +0200 (Fri, 21 Apr 2006) | 8 lines
      
        Documentation fo...
      477c8d5e
  28. 01 Sep, 2005 1 commit
  29. 31 Aug, 2005 1 commit
  30. 23 Jan, 2005 1 commit
  31. 08 Jan, 2005 1 commit
    • Johannes Gijsbers's avatar
      Patch #1094015: · e4172ead
      Johannes Gijsbers authored
      * Use os.makedirs() instead os.mkdir(). (bug #975763)
      * Use copystat() to copy directory bits (bug #1048878)
      e4172ead