An error occurred fetching the project authors.
  1. 01 Feb, 2009 2 commits
  2. 18 Jan, 2009 1 commit
  3. 17 Jan, 2009 1 commit
  4. 12 Jan, 2009 1 commit
  5. 10 Jan, 2009 1 commit
  6. 20 Nov, 2008 1 commit
  7. 17 Nov, 2008 1 commit
  8. 16 Oct, 2008 1 commit
  9. 26 Aug, 2008 1 commit
    • Antoine Pitrou's avatar
      Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to · ec569b79
      Antoine Pitrou authored
      match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
      mechanism. In the process, fix a bug where isinstance() and issubclass(),
      when given a tuple of classes as second argument, were looking up
      __instancecheck__ / __subclasscheck__ on the tuple rather than on each
      type object.
      
      Reviewed by Benjamin Peterson and Raymond Hettinger.
      ec569b79
  10. 07 Aug, 2008 1 commit
  11. 15 Jul, 2008 1 commit
  12. 10 Jun, 2008 1 commit
    • Georg Brandl's avatar
      Merged revisions... · f08a9ddc
      Georg Brandl authored
      Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63724 | gregory.p.smith | 2008-05-26 22:22:14 +0200 (Mon, 26 May 2008) | 6 lines
      
        Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until
        the last reference to the Popen instance was dropped.  Adding explicit
        close() calls fixes it.
      
        Candidate for backport to release25-maint.
      ........
        r63726 | benjamin.peterson | 2008-05-26 22:43:24 +0200 (Mon, 26 May 2008) | 2 lines
      
        fix minor grammar typo
      ........
        r63732 | benjamin.peterson | 2008-05-26 23:44:26 +0200 (Mon, 26 May 2008) | 2 lines
      
        remove duplication in test module
      ........
        r63744 | lars.gustaebel | 2008-05-27 14:39:23 +0200 (Tue, 27 May 2008) | 3 lines
      
        Do not close external file objects passed to tarfile.open(mode='w:bz2')
        when the TarFile is closed.
      ........
        r63754 | benjamin.peterson | 2008-05-28 03:12:35 +0200 (Wed, 28 May 2008) | 2 lines
      
        update tutorial function with more appropiate one from Eric Smith
      ........
        r63755 | mark.hammond | 2008-05-28 03:54:55 +0200 (Wed, 28 May 2008) | 2 lines
      
        bdist_wininst now works correctly when both --skip-build and --plat-name are specified.
      ........
        r63757 | georg.brandl | 2008-05-28 13:21:39 +0200 (Wed, 28 May 2008) | 2 lines
      
        #2989: add PyType_Modified().
      ........
        r63758 | benjamin.peterson | 2008-05-28 13:51:41 +0200 (Wed, 28 May 2008) | 2 lines
      
        fix spelling
      ........
        r63760 | georg.brandl | 2008-05-28 17:41:36 +0200 (Wed, 28 May 2008) | 2 lines
      
        #2990: prevent inconsistent state while updating method cache.
      ........
        r63775 | georg.brandl | 2008-05-29 09:18:17 +0200 (Thu, 29 May 2008) | 2 lines
      
        Two fixes in bytearray docs.
      ........
        r63781 | georg.brandl | 2008-05-29 09:38:37 +0200 (Thu, 29 May 2008) | 2 lines
      
        #2988: add note about catching CookieError when parsing untrusted cookie data.
      ........
        r63782 | georg.brandl | 2008-05-29 09:45:26 +0200 (Thu, 29 May 2008) | 2 lines
      
        #2985: allow i8 in XMLRPC responses.
      ........
        r63787 | georg.brandl | 2008-05-29 16:35:39 +0200 (Thu, 29 May 2008) | 2 lines
      
        Revert #2990 patch; it's not necessary as Armin showed.
      ........
        r63805 | raymond.hettinger | 2008-05-30 08:37:27 +0200 (Fri, 30 May 2008) | 1 line
      
        Issue 2784: fix leaks in exception exit.
      ........
        r63806 | raymond.hettinger | 2008-05-30 08:49:47 +0200 (Fri, 30 May 2008) | 1 line
      
        Issue 2855: Fix obscure crasher by slowing down the entire module.  Mimics what was done to dictionaries in r59223.
      ........
        r63807 | raymond.hettinger | 2008-05-30 09:16:53 +0200 (Fri, 30 May 2008) | 1 line
      
        Issue 2903:  Add __name__ in globals for namedtuple namespace.
      ........
        r63808 | georg.brandl | 2008-05-30 09:54:16 +0200 (Fri, 30 May 2008) | 2 lines
      
        #2999: fix name of third parameter in unicode.replace()'s docstring.
      ........
        r63818 | georg.brandl | 2008-05-30 21:12:13 +0200 (Fri, 30 May 2008) | 2 lines
      
        getloadavg() is not available on Windows.
      ........
        r63819 | georg.brandl | 2008-05-30 21:17:29 +0200 (Fri, 30 May 2008) | 2 lines
      
        Better quote with single quotes.
      ........
        r63823 | benjamin.peterson | 2008-05-30 22:44:39 +0200 (Fri, 30 May 2008) | 2 lines
      
        fix grammar
      ........
        r63824 | marc-andre.lemburg | 2008-05-30 22:52:18 +0200 (Fri, 30 May 2008) | 5 lines
      
        Update the locale module alias table.
      
        Closes #3011.
      ........
      f08a9ddc
  13. 04 Jun, 2008 1 commit
    • Martin v. Löwis's avatar
      Merged revisions 63856-63857,63859-63860 via svnmerge from · 00709aaa
      Martin v. Löwis authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63856 | robert.schuppenies | 2008-06-01 18:16:17 +0200 (So, 01 Jun 2008) | 2 lines
      
        Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.
      ........
        r63859 | georg.brandl | 2008-06-01 18:42:16 +0200 (So, 01 Jun 2008) | 2 lines
      
        Some style nits. Also clarify in the docstrings what __sizeof__ does.
      ........
        r63860 | georg.brandl | 2008-06-01 19:05:56 +0200 (So, 01 Jun 2008) | 2 lines
      
        Fix test_descrtut.
      ........
      00709aaa
  14. 26 May, 2008 1 commit
  15. 25 May, 2008 1 commit
  16. 11 May, 2008 1 commit
    • Alexandre Vassalotti's avatar
      Rename copy_reg module to copyreg. · f7fa63dd
      Alexandre Vassalotti authored
      Updated documentation.
      Merged revisions 63042 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63042 | alexandre.vassalotti | 2008-05-11 04:25:28 -0400 (Sun, 11 May 2008) | 5 lines
      
        Added module stub for copy_reg renaming in 3.0.
        Renamed copy_reg to copyreg in the standard library, to avoid
        spurious warnings and ease later merging to py3k branch. Public
        documentation remains intact.
      ........
      f7fa63dd
  17. 03 May, 2008 1 commit
  18. 07 Apr, 2008 1 commit
  19. 28 Feb, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions... · 9e7f1d2e
      Christian Heimes authored
      Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61103 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61098 | jeffrey.yasskin | 2008-02-28 05:45:36 +0100 (Thu, 28 Feb 2008) | 7 lines
      
        Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,
        which forbids constructing types that have it set. The effect is to speed
      
          ./python.exe -m timeit -s 'import abc' -s 'class Foo(object): __metaclass__ = abc.ABCMeta' 'Foo()'
      
        up from 2.5us to 0.201us. This fixes issue 1762.
      ........
        r61099 | jeffrey.yasskin | 2008-02-28 06:53:18 +0100 (Thu, 28 Feb 2008) | 3 lines
      
        Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make
        sure all tests run even if some fail.
      ........
        r61100 | jeffrey.yasskin | 2008-02-28 07:09:19 +0100 (Thu, 28 Feb 2008) | 21 lines
      
        Thread.start() used sleep(0.000001) to make sure it didn't return before the
        new thread had started. At least on my MacBook Pro, that wound up sleeping for
        a full 10ms (probably 1 jiffy). By using an Event instead, we can be absolutely
        certain that the thread has started, and return more quickly (217us).
      
        Before:
        $  ./python.exe -m timeit -s 'from threading import Thread'  't = Thread(); t.start(); t.join()'
        100 loops, best of 3: 10.3 msec per loop
        $  ./python.exe -m timeit -s 'from threading import Thread; t = Thread()'  't.isAlive()'
        1000000 loops, best of 3: 0.47 usec per loop
      
        After:
        $  ./python.exe -m timeit -s 'from threading import Thread'  't = Thread(); t.start(); t.join()'
        1000 loops, best of 3: 217 usec per loop
        $  ./python.exe -m timeit -s 'from threading import Thread; t = Thread()'  't.isAlive()'
        1000000 loops, best of 3: 0.86 usec per loop
      
        To be fair, the 10ms isn't CPU time, and other threads including the spawned
        one get to run during it. There are also some slightly more complicated ways to
        get back the .4us in isAlive() if we want.
      ........
        r61101 | raymond.hettinger | 2008-02-28 10:23:48 +0100 (Thu, 28 Feb 2008) | 1 line
      
        Add repeat keyword argument to itertools.product().
      ........
        r61102 | christian.heimes | 2008-02-28 12:18:49 +0100 (Thu, 28 Feb 2008) | 1 line
      
        The empty tuple is usually a singleton with a much higher refcnt than 1
      ........
      9e7f1d2e
  20. 27 Jan, 2008 2 commits
    • Christian Heimes's avatar
      Merged revisions 60364-60378 via svnmerge from · 26855635
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60364 | neal.norwitz | 2008-01-27 19:09:48 +0100 (Sun, 27 Jan 2008) | 4 lines
      
        Update the comment and remove the close.  If we close we can't flush anymore.
        We might still need to close after the for loop if flushing 6! times still
        doesn't cause the signal/exception.
      ........
        r60365 | georg.brandl | 2008-01-27 19:14:43 +0100 (Sun, 27 Jan 2008) | 2 lines
      
        Remove effectless expression statement.
      ........
        r60367 | neal.norwitz | 2008-01-27 19:19:04 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Try to handle socket.errors properly in is_unavailable
      ........
        r60370 | christian.heimes | 2008-01-27 20:01:45 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Change isbasestring function as discussed on the cvs list a while ago
      ........
        r60372 | neal.norwitz | 2008-01-27 21:03:13 +0100 (Sun, 27 Jan 2008) | 3 lines
      
        socket.error doesn't have a headers attribute like ProtocolError.
        Handle that situation where we catch socket.errors.
      ........
        r60375 | georg.brandl | 2008-01-27 21:25:12 +0100 (Sun, 27 Jan 2008) | 2 lines
      
        Add refcounting extension to build config.
      ........
        r60377 | jeffrey.yasskin | 2008-01-28 00:08:46 +0100 (Mon, 28 Jan 2008) | 6 lines
      
        Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because
        it's useful outside of rational numbers.
      
        This is my first C code that had to do anything significant. Please be more
        careful when looking over it.
      ........
        r60378 | christian.heimes | 2008-01-28 00:34:59 +0100 (Mon, 28 Jan 2008) | 1 line
      
        Added clear cache methods to clear the internal type lookup cache for ref leak test runs.
      ........
      26855635
    • Christian Heimes's avatar
      Merged revisions 60350-60363 via svnmerge from · 412dc9c8
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60355 | neal.norwitz | 2008-01-27 18:10:14 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Whitespace cleanup
      ........
        r60356 | neal.norwitz | 2008-01-27 18:10:29 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Add assertion that we do not blow out newl
      ........
        r60357 | neal.norwitz | 2008-01-27 18:10:35 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Initialize variable to prevent warning on some platform/config.
      ........
        r60358 | neal.norwitz | 2008-01-27 18:10:43 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Update to newer version of ffi.  Fixes crashes and test failures of longdouble
      ........
        r60359 | neal.norwitz | 2008-01-27 18:10:50 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Add a tiny sleep and additional flush to force the file to really be synced.
      ........
        r60360 | neal.norwitz | 2008-01-27 18:10:58 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Retry connection in case it fails to reduce flakiness
      ........
        r60361 | neal.norwitz | 2008-01-27 18:11:11 +0100 (Sun, 27 Jan 2008) | 4 lines
      
        Catch socket errors that are often the cause of transient failures.
        Many of these exceptions are due to resource unavailable, so the
        existing code should be able to handle many more spurious errors.
      ........
        r60362 | neal.norwitz | 2008-01-27 18:12:15 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Reduce buffer size since we do not need 1k
      ........
        r60363 | neal.norwitz | 2008-01-27 18:13:07 +0100 (Sun, 27 Jan 2008) | 1 line
      
        Print periodic "still working" messages since this suite is slow.
      ........
      412dc9c8
  21. 12 Jan, 2008 1 commit
    • Christian Heimes's avatar
      Merged revisions 59921-59932 via svnmerge from · a62da1da
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59923 | raymond.hettinger | 2008-01-11 19:04:55 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Speed-up and simplify code urlparse's result objects.
      ........
        r59924 | andrew.kuchling | 2008-01-11 20:33:24 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Bug #1790: update link; remove outdated paragraph
      ........
        r59925 | thomas.heller | 2008-01-11 20:34:06 +0100 (Fri, 11 Jan 2008) | 5 lines
      
        Raise an error instead of crashing with a segfault when a NULL
        function pointer is called.
      
        Will backport to release25-maint.
      ........
        r59927 | thomas.heller | 2008-01-11 21:29:19 +0100 (Fri, 11 Jan 2008) | 4 lines
      
        Fix a potential 'SystemError: NULL result without error'.
        NULL may be a valid return value from PyLong_AsVoidPtr.
      
        Will backport to release25-maint.
      ........
        r59928 | raymond.hettinger | 2008-01-12 00:25:18 +0100 (Sat, 12 Jan 2008) | 1 line
      
        Update the opcode docs for STORE_MAP and BUILD_MAP
      ........
        r59929 | mark.dickinson | 2008-01-12 02:56:00 +0100 (Sat, 12 Jan 2008) | 4 lines
      
        Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
        when constructing from a string. Disallow trailing newlines in
        Context.create_decimal.
      ........
        r59930 | georg.brandl | 2008-01-12 11:53:29 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Move OSError docs to exceptions doc, remove obsolete descriptions
        from os docs, rework posix docs.
      ........
        r59931 | georg.brandl | 2008-01-12 14:47:57 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Patch #1700288: Method cache optimization, by Armin Rigo, ported to
        2.6 by Kevin Jacobs.
      ........
        r59932 | georg.brandl | 2008-01-12 17:11:09 +0100 (Sat, 12 Jan 2008) | 2 lines
      
        Fix editing glitch.
      ........
      a62da1da
  22. 11 Jan, 2008 1 commit
  23. 06 Jan, 2008 1 commit
  24. 01 Jan, 2008 1 commit
  25. 19 Dec, 2007 1 commit
  26. 02 Dec, 2007 2 commits
  27. 15 Nov, 2007 1 commit
  28. 06 Nov, 2007 1 commit
    • Guido van Rossum's avatar
      Merging the py3k-pep3137 branch back into the py3k branch. · 98297ee7
      Guido van Rossum authored
      No detailed change log; just check out the change log for the py3k-pep3137
      branch.  The most obvious changes:
      
        - str8 renamed to bytes (PyString at the C level);
        - bytes renamed to buffer (PyBytes at the C level);
        - PyString and PyUnicode are no longer compatible.
      
      I.e. we now have an immutable bytes type and a mutable bytes type.
      
      The behavior of PyString was modified quite a bit, to make it more
      bytes-like.  Some changes are still on the to-do list.
      98297ee7
  29. 02 Nov, 2007 1 commit
  30. 08 Sep, 2007 1 commit
    • Thomas Wouters's avatar
      Merged revisions 57778-58052 via svnmerge from · 89d996e5
      Thomas Wouters authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r57820 | georg.brandl | 2007-08-31 08:59:27 +0200 (Fri, 31 Aug 2007) | 2 lines
      
        Document new shorthand notation for index entries.
      ........
        r57827 | georg.brandl | 2007-08-31 10:47:51 +0200 (Fri, 31 Aug 2007) | 2 lines
      
        Fix subitem markup.
      ........
        r57833 | martin.v.loewis | 2007-08-31 12:01:07 +0200 (Fri, 31 Aug 2007) | 1 line
      
        Mark registry components as 64-bit on Win64.
      ........
        r57854 | bill.janssen | 2007-08-31 21:02:23 +0200 (Fri, 31 Aug 2007) | 1 line
      
        deprecate use of FakeSocket
      ........
        r57855 | bill.janssen | 2007-08-31 21:02:46 +0200 (Fri, 31 Aug 2007) | 1 line
      
        remove mentions of socket.ssl in comments
      ........
        r57856 | bill.janssen | 2007-08-31 21:03:31 +0200 (Fri, 31 Aug 2007) | 1 line
      
        remove use of non-existent SSLFakeSocket in apparently untested code
      ........
        r57859 | martin.v.loewis | 2007-09-01 08:36:03 +0200 (Sat, 01 Sep 2007) | 3 lines
      
        Bug #1737210: Change Manufacturer of Windows installer to PSF.
        Will backport to 2.5.
      ........
        r57865 | georg.brandl | 2007-09-01 09:51:24 +0200 (Sat, 01 Sep 2007) | 2 lines
      
        Fix RST link (backport from Py3k).
      ........
        r57876 | georg.brandl | 2007-09-01 17:49:49 +0200 (Sat, 01 Sep 2007) | 2 lines
      
        Document sets' ">" and "<" operations (backport from py3k).
      ........
        r57878 | skip.montanaro | 2007-09-01 19:40:03 +0200 (Sat, 01 Sep 2007) | 4 lines
      
        Added a note and examples to explain that re.split does not split on an
        empty pattern match. (issue 852532).
      ........
        r57879 | walter.doerwald | 2007-09-01 20:18:09 +0200 (Sat, 01 Sep 2007) | 2 lines
      
        Fix wrong function names.
      ........
        r57880 | walter.doerwald | 2007-09-01 20:34:05 +0200 (Sat, 01 Sep 2007) | 2 lines
      
        Fix typo.
      ........
        r57889 | andrew.kuchling | 2007-09-01 22:31:59 +0200 (Sat, 01 Sep 2007) | 1 line
      
        Markup fix
      ........
        r57892 | andrew.kuchling | 2007-09-01 22:43:36 +0200 (Sat, 01 Sep 2007) | 1 line
      
        Add various items
      ........
        r57895 | andrew.kuchling | 2007-09-01 23:17:58 +0200 (Sat, 01 Sep 2007) | 1 line
      
        Wording change
      ........
        r57896 | andrew.kuchling | 2007-09-01 23:18:31 +0200 (Sat, 01 Sep 2007) | 1 line
      
        Add more items
      ........
        r57904 | ronald.oussoren | 2007-09-02 11:46:07 +0200 (Sun, 02 Sep 2007) | 3 lines
      
        Macosx: this patch ensures that the value of MACOSX_DEPLOYMENT_TARGET used
        by the Makefile is also used at configure-time.
      ........
        r57925 | georg.brandl | 2007-09-03 09:16:46 +0200 (Mon, 03 Sep 2007) | 2 lines
      
        Fix #883466: don't allow Unicode as arguments to quopri and uu codecs.
      ........
        r57936 | matthias.klose | 2007-09-04 01:33:04 +0200 (Tue, 04 Sep 2007) | 2 lines
      
        - Added support for linking the bsddb module against BerkeleyDB 4.6.x.
      ........
        r57954 | mark.summerfield | 2007-09-04 10:16:15 +0200 (Tue, 04 Sep 2007) | 3 lines
      
        Added cross-references plus a note about dict & list shallow copying.
      ........
        r57958 | martin.v.loewis | 2007-09-04 11:51:57 +0200 (Tue, 04 Sep 2007) | 3 lines
      
        Document that we rely on the OS to release the crypto
        context. Fixes #1626801.
      ........
        r57960 | martin.v.loewis | 2007-09-04 15:13:14 +0200 (Tue, 04 Sep 2007) | 3 lines
      
        Patch #1388440: Add set_completion_display_matches_hook and
        get_completion_type to readline.
      ........
        r57961 | martin.v.loewis | 2007-09-04 16:19:28 +0200 (Tue, 04 Sep 2007) | 3 lines
      
        Patch #1031213: Decode source line in SyntaxErrors back to its original
        source encoding. Will backport to 2.5.
      ........
        r57972 | matthias.klose | 2007-09-04 20:17:36 +0200 (Tue, 04 Sep 2007) | 3 lines
      
        - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
          to include some information about the build environment.
      ........
        r57973 | matthias.klose | 2007-09-04 21:05:38 +0200 (Tue, 04 Sep 2007) | 2 lines
      
        - Makefile.pre.in(buildbottest): Remove whitespace at eol.
      ........
        r57975 | matthias.klose | 2007-09-04 22:46:02 +0200 (Tue, 04 Sep 2007) | 2 lines
      
        - Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.
      ........
        r57980 | bill.janssen | 2007-09-05 02:46:27 +0200 (Wed, 05 Sep 2007) | 1 line
      
        SSL certificate distinguished names should be represented by tuples
      ........
        r57985 | martin.v.loewis | 2007-09-05 08:39:17 +0200 (Wed, 05 Sep 2007) | 3 lines
      
        Patch #1105: Explain that one needs to build the solution
        to get dependencies right.
      ........
        r57987 | armin.rigo | 2007-09-05 09:51:21 +0200 (Wed, 05 Sep 2007) | 4 lines
      
        PyDict_GetItem() returns a borrowed reference.
        There are probably a number of places that are open to attacks
        such as the following one, in bltinmodule.c:min_max().
      ........
        r57991 | martin.v.loewis | 2007-09-05 13:47:34 +0200 (Wed, 05 Sep 2007) | 3 lines
      
        Patch #786737: Allow building in a tree of symlinks pointing to
        a readonly source.
      ........
        r57993 | georg.brandl | 2007-09-05 15:36:44 +0200 (Wed, 05 Sep 2007) | 2 lines
      
        Backport from Py3k: Bug #1684991: explain lookup semantics for __special__ methods (new-style classes only).
      ........
        r58004 | armin.rigo | 2007-09-06 10:30:51 +0200 (Thu, 06 Sep 2007) | 4 lines
      
        Patch #1733973 by peaker:
        ptrace_enter_call() assumes no exception is currently set.
        This assumption is broken when throwing into a generator.
      ........
        r58006 | armin.rigo | 2007-09-06 11:30:38 +0200 (Thu, 06 Sep 2007) | 4 lines
      
        PyDict_GetItem() returns a borrowed reference.
        This attack is against ceval.c:IMPORT_NAME, which calls an
        object (__builtin__.__import__) without holding a reference to it.
      ........
        r58013 | georg.brandl | 2007-09-06 16:49:56 +0200 (Thu, 06 Sep 2007) | 2 lines
      
        Backport from 3k: #1116: fix reference to old filename.
      ........
        r58021 | thomas.heller | 2007-09-06 22:26:20 +0200 (Thu, 06 Sep 2007) | 1 line
      
        Fix typo:  c_float represents to C float type.
      ........
        r58022 | skip.montanaro | 2007-09-07 00:29:06 +0200 (Fri, 07 Sep 2007) | 3 lines
      
        If this is correct for py3k branch and it's already in the release25-maint
        branch, seems like it ought to be on the trunk as well.
      ........
        r58023 | gregory.p.smith | 2007-09-07 00:59:59 +0200 (Fri, 07 Sep 2007) | 4 lines
      
        Apply the fix from Issue1112 to make this test more robust and keep
        windows happy.
      ........
        r58031 | brett.cannon | 2007-09-07 05:17:50 +0200 (Fri, 07 Sep 2007) | 4 lines
      
        Make uuid1 and uuid4 tests conditional on whether ctypes can be imported;
        implementation of either function depends on ctypes but uuid as a whole does
        not.
      ........
        r58032 | brett.cannon | 2007-09-07 06:18:30 +0200 (Fri, 07 Sep 2007) | 6 lines
      
        Fix a crasher where Python code managed to infinitely recurse in C code without
        ever going back out to Python code in PyObject_Call().  Required introducing a
        static RuntimeError instance so that normalizing an exception there is no
        reliance on a recursive call that would put the exception system over the
        recursion check itself.
      ........
        r58034 | thomas.heller | 2007-09-07 08:32:17 +0200 (Fri, 07 Sep 2007) | 1 line
      
        Add a 'c_longdouble' type to the ctypes module.
      ........
        r58035 | thomas.heller | 2007-09-07 11:30:40 +0200 (Fri, 07 Sep 2007) | 1 line
      
        Remove unneeded #include.
      ........
        r58036 | thomas.heller | 2007-09-07 11:33:24 +0200 (Fri, 07 Sep 2007) | 6 lines
      
        Backport from py3k branch:
      
        Add a workaround for a strange bug on win64, when _ctypes is compiled
        with the SDK compiler.  This should fix the failing
        Lib\ctypes\test\test_as_parameter.py test.
      ........
        r58037 | georg.brandl | 2007-09-07 16:14:40 +0200 (Fri, 07 Sep 2007) | 2 lines
      
        Fix a wrong indentation for sublists.
      ........
        r58043 | georg.brandl | 2007-09-07 22:10:49 +0200 (Fri, 07 Sep 2007) | 2 lines
      
        #1095: ln -f doesn't work portably, fix in Makefile.
      ........
        r58049 | skip.montanaro | 2007-09-08 02:34:17 +0200 (Sat, 08 Sep 2007) | 1 line
      
        be explicit about the actual location of the missing file
      ........
      89d996e5
  31. 30 Aug, 2007 2 commits
  32. 26 Aug, 2007 2 commits
  33. 25 Aug, 2007 2 commits
    • Neal Norwitz's avatar
      Use unicode · a369c5ab
      Neal Norwitz authored
      a369c5ab
    • Eric Smith's avatar
      Implementation of PEP 3101, Advanced String Formatting. · 8c663263
      Eric Smith authored
      Known issues:
      
      The string.Formatter class, as discussed in the PEP, is incomplete.
      
      Error handling needs to conform to the PEP.
      
      Need to fix this warning that I introduced in Python/formatter_unicode.c:
      Objects/stringlib/unicodedefs.h:26: warning: `STRINGLIB_CMP' defined but not used
      
      Need to make sure sign formatting is correct, more tests needed.
      
      Need to remove '()' sign formatting, left over from an earlier version of the PEP.
      8c663263
  34. 19 Aug, 2007 1 commit