1. 08 Eyl, 2016 1 kayıt (commit)
  2. 02 Kas, 2015 1 kayıt (commit)
  3. 30 Eyl, 2013 1 kayıt (commit)
  4. 25 Ara, 2012 1 kayıt (commit)
  5. 10 Tem, 2012 1 kayıt (commit)
  6. 28 Tem, 2011 1 kayıt (commit)
  7. 16 Mar, 2011 1 kayıt (commit)
  8. 06 Kas, 2010 4 kayıt (commit)
  9. 05 Kas, 2010 1 kayıt (commit)
  10. 22 Tem, 2010 1 kayıt (commit)
  11. 05 Mar, 2010 1 kayıt (commit)
  12. 29 Ock, 2010 1 kayıt (commit)
  13. 23 Ock, 2010 1 kayıt (commit)
  14. 21 Ara, 2009 2 kayıt (commit)
  15. 16 Tem, 2009 2 kayıt (commit)
  16. 12 Tem, 2009 2 kayıt (commit)
  17. 11 Haz, 2009 5 kayıt (commit)
  18. 10 Haz, 2009 2 kayıt (commit)
  19. 25 Ock, 2009 1 kayıt (commit)
  20. 19 Agu, 2008 2 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 65780,65782,65785,65809,65812,65834,65846,65859,65861 via svnmerge from · c4fe6f39
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r65780 | antoine.pitrou | 2008-08-17 15:15:07 -0500 (Sun, 17 Aug 2008) | 3 lines
      
        #3580: fix a failure in test_os
      ........
        r65782 | benjamin.peterson | 2008-08-17 15:33:45 -0500 (Sun, 17 Aug 2008) | 1 line
      
        set svn:executable on a script
      ........
        r65785 | amaury.forgeotdarc | 2008-08-17 16:05:18 -0500 (Sun, 17 Aug 2008) | 3 lines
      
        Fix a refleak in bytearray.split and bytearray.rsplit, detected by
           regrtest.py -R:: test_bytes
      ........
        r65809 | nick.coghlan | 2008-08-18 07:42:46 -0500 (Mon, 18 Aug 2008) | 1 line
      
        Belated NEWS entry for r65642
      ........
        r65812 | nick.coghlan | 2008-08-18 08:32:19 -0500 (Mon, 18 Aug 2008) | 1 line
      
        Fix typo
      ........
        r65834 | amaury.forgeotdarc | 2008-08-18 14:23:47 -0500 (Mon, 18 Aug 2008) | 4 lines
      
        #2234 distutils failed with mingw binutils 2.18.50.20080109.
        Be less strict when parsing these version numbers,
        they don't necessarily follow the python numbering scheme.
      ........
        r65846 | georg.brandl | 2008-08-18 18:09:49 -0500 (Mon, 18 Aug 2008) | 2 lines
      
        Fix grammar.
      ........
        r65859 | thomas.heller | 2008-08-19 12:47:13 -0500 (Tue, 19 Aug 2008) | 2 lines
      
        Fix strange character in the docstring.
      ........
        r65861 | benjamin.peterson | 2008-08-19 12:59:23 -0500 (Tue, 19 Aug 2008) | 1 line
      
        get unparse to at least unparse its self
      ........
      c4fe6f39
    • Antoine Pitrou's avatar
      #2834: Change re module semantics, so that str and bytes mixing is forbidden, · fd036451
      Antoine Pitrou yazdı
      and str (unicode) patterns get full unicode matching by default. The re.ASCII
      flag is also introduced to ask for ASCII matching instead.
      fd036451
  21. 18 Agu, 2008 2 kayıt (commit)
  22. 03 Ara, 2007 2 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
      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
  23. 30 Agu, 2007 1 kayıt (commit)
  24. 17 Nis, 2007 1 kayıt (commit)
  25. 10 Ock, 2007 1 kayıt (commit)
  26. 10 Kas, 2004 1 kayıt (commit)