1. 22 Eyl, 2017 1 kayıt (commit)
  2. 25 Ara, 2015 1 kayıt (commit)
  3. 23 May, 2015 1 kayıt (commit)
    • Nick Coghlan's avatar
      PEP 489: Multi-phase extension module initialization · d5cacbb1
      Nick Coghlan yazdı
      Known limitations of the current implementation:
      
      - documentation changes are incomplete
      - there's a reference leak I haven't tracked down yet
      
      The leak is most visible by running:
      
        ./python -m test -R3:3 test_importlib
      
      However, you can also see it by running:
      
        ./python -X showrefcount
      
      Importing the array or _testmultiphase modules, and
      then deleting them from both sys.modules and the local
      namespace shows significant increases in the total
      number of active references each cycle. By contrast,
      with _testcapi (which continues to use single-phase
      initialisation) the global refcounts stabilise after
      a couple of cycles.
      d5cacbb1
  4. 01 Ock, 2013 1 kayıt (commit)
  5. 27 Haz, 2010 1 kayıt (commit)
  6. 09 May, 2010 4 kayıt (commit)
  7. 02 Şub, 2009 1 kayıt (commit)
  8. 02 Tem, 2008 2 kayıt (commit)
  9. 11 Haz, 2008 1 kayıt (commit)
  10. 19 Ara, 2007 2 kayıt (commit)
  11. 14 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59465-59487 via svnmerge from · 38053211
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59467 | georg.brandl | 2007-12-11 17:32:49 +0100 (Tue, 11 Dec 2007) | 2 lines
      
        Add another GHOP contributor.
      ........
        r59468 | kurt.kaiser | 2007-12-11 20:35:12 +0100 (Tue, 11 Dec 2007) | 3 lines
      
        IDLE_tabbedpages.071101.patch Tal Einat
        Cosmetic changes, one bug.  Remove tabpage.py, replaced by tabbedpages.py
      ........
        r59471 | gerhard.haering | 2007-12-11 22:07:40 +0100 (Tue, 11 Dec 2007) | 9 lines
      
        Forward-port of commit 59184.
      
        - Backported a workaround for a bug in SQLite 3.2.x/3.3.x versions where a
          statement recompilation with no bound parameters lead to a segfault
        - Backported a fix necessary because of an SQLite API change in version
          3.5.
          This prevents segfaults when executing empty queries, like our test suite
          does
      ........
        r59475 | christian.heimes | 2007-12-12 19:09:06 +0100 (Wed, 12 Dec 2007) | 1 line
      
        Fixed a nasty problem in the xxmodule.c
      ........
        r59478 | raymond.hettinger | 2007-12-13 01:08:37 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate.
      ........
        r59480 | alexandre.vassalotti | 2007-12-13 18:58:23 +0100 (Thu, 13 Dec 2007) | 2 lines
      
        Fix issue #1313119: urlparse "caches" parses regardless of encoding
      ........
        r59482 | christian.heimes | 2007-12-13 20:23:16 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Fixed bug #1613: Makefile's VPATH feature is broken
      ........
        r59484 | guido.van.rossum | 2007-12-13 21:50:10 +0100 (Thu, 13 Dec 2007) | 3 lines
      
        Patch #1608.  Someone with access to autoconf 2.61 or higher needs to
        run it and check in the resulting configure file.
      ........
        r59485 | thomas.heller | 2007-12-13 22:20:29 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Ran autoconf.
      ........
        r59486 | raymond.hettinger | 2007-12-13 23:55:52 +0100 (Thu, 13 Dec 2007) | 1 line
      
        Simplify implementation of __replace__()
      ........
        r59487 | raymond.hettinger | 2007-12-14 00:52:59 +0100 (Fri, 14 Dec 2007) | 1 line
      
        Small speedup
      ........
      38053211
  12. 12 Ara, 2007 1 kayıt (commit)
  13. 03 Ara, 2007 3 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59275-59303 via svnmerge from · cbf3b5cb
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      NOTE: The merge does NOT contain the modified file Python/import.c from
            r59288. I can't get it running. Nick, please check in the PEP 366
            manually.
      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      
      ........
        r59279 | georg.brandl | 2007-12-02 19:17:50 +0100 (Sun, 02 Dec 2007) | 2 lines
      
        Fix a sentence I missed before. Do not merge to 3k.
      ........
        r59281 | georg.brandl | 2007-12-02 22:58:54 +0100 (Sun, 02 Dec 2007) | 3 lines
      
        Add documentation for PySys_* functions.
        Written by Charlie Shepherd for GHOP. Also fixes #1245.
      ........
        r59288 | nick.coghlan | 2007-12-03 13:55:17 +0100 (Mon, 03 Dec 2007) | 1 line
      
        Implement PEP 366
      ........
        r59290 | christian.heimes | 2007-12-03 14:47:29 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Applied my patch #1455 with some extra fixes for VS 2005
        The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier.
        I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.
      ........
        r59291 | christian.heimes | 2007-12-03 14:55:16 +0100 (Mon, 03 Dec 2007) | 1 line
      
        Added comment to Misc/NEWS for r59290
      ........
        r59292 | christian.heimes | 2007-12-03 15:28:04 +0100 (Mon, 03 Dec 2007) | 1 line
      
        I followed MA Lemberg's suggestion and added comments to the late initialization of the type slots.
      ........
        r59293 | facundo.batista | 2007-12-03 17:29:52 +0100 (Mon, 03 Dec 2007) | 3 lines
      
      
        Speedup and cleaning of __str__.  Thanks Mark Dickinson.
      ........
        r59294 | facundo.batista | 2007-12-03 18:55:00 +0100 (Mon, 03 Dec 2007) | 4 lines
      
      
        Faster _fix function, and some reordering for a more elegant
        coding. Thanks Mark Dickinson.
      ........
        r59295 | martin.v.loewis | 2007-12-03 20:20:02 +0100 (Mon, 03 Dec 2007) | 5 lines
      
        Issue #1727780: Support loading pickles of random.Random objects created
        on 32-bit systems on 64-bit systems, and vice versa. As a consequence
        of the change, Random pickles created by Python 2.6 cannot be loaded
        in Python 2.5.
      ........
        r59297 | facundo.batista | 2007-12-03 20:49:54 +0100 (Mon, 03 Dec 2007) | 3 lines
      
      
        Two small fixes. Issue 1547.
      ........
        r59299 | georg.brandl | 2007-12-03 20:57:02 +0100 (Mon, 03 Dec 2007) | 2 lines
      
        #1548: fix apostroph placement.
      ........
        r59300 | christian.heimes | 2007-12-03 21:01:02 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Patch #1537 from Chad Austin
        Change GeneratorExit's base class from Exception to BaseException
        (This time I'm applying the patch to the correct sandbox.)
      ........
        r59302 | georg.brandl | 2007-12-03 21:03:46 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Add examples to the xmlrpclib docs.
        Written for GHOP by Josip Dzolonga.
      ........
      cbf3b5cb
    • Christian Heimes's avatar
    • Christian Heimes's avatar
      Applied my patch #1455 with some extra fixes for VS 2005 · 3305c52d
      Christian Heimes yazdı
      The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier.
      I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.
      3305c52d
  14. 02 Ara, 2007 1 kayıt (commit)
  15. 18 Kas, 2007 1 kayıt (commit)
  16. 24 Agu, 2007 1 kayıt (commit)
  17. 21 Tem, 2007 2 kayıt (commit)
    • Martin v. Löwis's avatar
      Merged revisions 56467-56482 via svnmerge from · 9f2e3469
      Martin v. Löwis yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ................
        r56477 | martin.v.loewis | 2007-07-21 09:04:38 +0200 (Sa, 21 Jul 2007) | 11 lines
      
        Merged revisions 56466-56476 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r56476 | martin.v.loewis | 2007-07-21 08:55:02 +0200 (Sa, 21 Jul 2007) | 4 lines
      
          PEP 3123: Provide forward compatibility with Python 3.0, while keeping
          backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and
          PyVarObject_HEAD_INIT.
        ........
      ................
        r56478 | martin.v.loewis | 2007-07-21 09:47:23 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        PEP 3123: Use proper C inheritance for PyObject.
      ................
        r56479 | martin.v.loewis | 2007-07-21 10:06:55 +0200 (Sa, 21 Jul 2007) | 3 lines
      
        Add longintrepr.h to Python.h, so that the compiler can
        see that PyFalse is really some kind of PyObject*.
      ................
        r56480 | martin.v.loewis | 2007-07-21 10:47:18 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        Qualify SHIFT, MASK, BASE.
      ................
        r56482 | martin.v.loewis | 2007-07-21 19:10:57 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        Correctly refer to _ob_next.
      ................
      9f2e3469
    • Martin v. Löwis's avatar
      PEP 3123: Provide forward compatibility with Python 3.0, while keeping · 6819210b
      Martin v. Löwis yazdı
      backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and
      PyVarObject_HEAD_INIT.
      6819210b
  18. 21 Nis, 2006 1 kayıt (commit)
    • Thomas Wouters's avatar
      Merge part of the trunk changes into the p3yk branch. This merges from 43030 · a977329b
      Thomas Wouters yazdı
      (branch-creation time) up to 43067. 43068 and 43069 contain a little
      swapping action between re.py and sre.py, and this mightily confuses svn
      merge, so later changes are going in separately.
      
      This merge should break no additional tests.
      
      The last-merged revision is going in a 'last_merge' property on '.' (the
      branch directory.) Arbitrarily chosen, really; if there's a BCP for this, I
      couldn't find it, but we can easily change it afterwards ;)
      a977329b
  19. 15 Mar, 2006 1 kayıt (commit)
  20. 14 Mar, 2006 1 kayıt (commit)
    • Neal Norwitz's avatar
      Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and · 7580146b
      Neal Norwitz yazdı
      PyObject_Unicode().  This problem was originally reported from Coverity
      and addresses mail on python-dev "checkin r43015".
      
      This inlines the conversion of the string to unicode and cleans
      up/simplifies some code at the end of the PyObject_Unicode().
      
      We really need a complete C API test module for all public APIs
      and passing good and bad parameter values.
      
      Will backport.
      7580146b
  21. 19 Ock, 2006 1 kayıt (commit)
  22. 13 Şub, 2003 1 kayıt (commit)
  23. 11 Şub, 2003 1 kayıt (commit)
  24. 29 Ara, 2002 1 kayıt (commit)
  25. 14 Agu, 2002 1 kayıt (commit)
  26. 02 Agu, 2002 1 kayıt (commit)
  27. 17 Tem, 2002 2 kayıt (commit)
    • Tim Peters's avatar
    • Jeremy Hylton's avatar
      staticforward bites the dust. · 938ace69
      Jeremy Hylton yazdı
      The staticforward define was needed to support certain broken C
      compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the
      static keyword when it was used with a forward declaration of a static
      initialized structure.  Standard C allows the forward declaration with
      static, and we've decided to stop catering to broken C compilers.  (In
      fact, we expect that the compilers are all fixed eight years later.)
      
      I'm leaving staticforward and statichere defined in object.h as
      static.  This is only for backwards compatibility with C extensions
      that might still use it.
      
      XXX I haven't updated the documentation.
      938ace69
  28. 23 May, 2002 1 kayıt (commit)
  29. 09 Nis, 2002 1 kayıt (commit)
  30. 12 Mar, 2002 1 kayıt (commit)
  31. 08 Ara, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch supplied by Burton Radons for his own SF bug #487390: Modifying · 14648396
      Guido van Rossum yazdı
      type.__module__ behavior.
      
      This adds the module name and a dot in front of the type name in every
      type object initializer, except for built-in types (and those that
      already had this).  Note that it touches lots of Mac modules -- I have
      no way to test these but the changes look right.  Apologies if they're
      not.  This also touches the weakref docs, which contains a sample type
      object initializer.  It also touches the mmap test output, because the
      mmap type's repr is included in that output.  It touches object.h to
      put the correct description in a comment.
      14648396