1. 04 Haz, 2009 1 kayıt (commit)
  2. 20 May, 2009 1 kayıt (commit)
  3. 24 Ock, 2009 1 kayıt (commit)
    • Mark Dickinson's avatar
      Merged revisions 68903,68906 via svnmerge from · cddcf444
      Mark Dickinson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68903 | mark.dickinson | 2009-01-24 16:40:29 +0000 (Sat, 24 Jan 2009) | 5 lines
      
        Issue #1672332: Fix unpickling of subnormal floats, which was raising
        ValueError on some platforms as a result of the platform strtod setting
        errno on underflow.
      ........
        r68906 | mark.dickinson | 2009-01-24 21:08:38 +0000 (Sat, 24 Jan 2009) | 2 lines
      
        Issue #3657: fix occasional test_pickletools failures.
      ........
      cddcf444
  4. 20 Ock, 2009 1 kayıt (commit)
  5. 12 Haz, 2008 2 kayıt (commit)
  6. 11 Haz, 2008 1 kayıt (commit)
  7. 11 May, 2008 1 kayıt (commit)
    • Alexandre Vassalotti's avatar
      Rename copy_reg module to copyreg. · f7fa63dd
      Alexandre Vassalotti yazdı
      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
  8. 17 Mar, 2008 1 kayıt (commit)
    • Guido van Rossum's avatar
      - A new pickle protocol (protocol 3) is added with explicit support · f4169816
      Guido van Rossum yazdı
        for bytes.  This is the default protocol.  It intentionally cannot
        be unpickled by Python 2.x.
      
      - When a pickle	written	by Python 2.x contains an (8-bit) str
        instance, this is now decoded to a (Unicode) str instance.  The
        encoding used to do this defaults to ASCII, but can be overridden
        via two new keyword arguments to the Unpickler class.  Previously
        this would create bytes instances, which is usually wrong: str
        instances are often used to pickle attribute names etc., and text is
        more common than binary data anyway.
      f4169816
  9. 11 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 126d29ab
      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,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60734 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60731 | raymond.hettinger | 2008-02-11 19:51:08 +0100 (Mon, 11 Feb 2008) | 1 line
      
        No need to register classes that already inherit from ABCs.
      ........
        r60733 | lars.gustaebel | 2008-02-11 20:17:10 +0100 (Mon, 11 Feb 2008) | 2 lines
      
        Make sure that xstar headers are read correctly.
      ........
        r60734 | raymond.hettinger | 2008-02-11 21:05:53 +0100 (Mon, 11 Feb 2008) | 1 line
      
        Add tests for pickletools.optimize().
      ........
      126d29ab
    • Christian Heimes's avatar
      Merged revisions… · 3feef617
      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,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60706,60708-60712,60714-60724 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60701 | georg.brandl | 2008-02-09 22:36:15 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Needs only 2.4 now.
      ........
        r60702 | georg.brandl | 2008-02-09 22:38:54 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Docs are rst now.
      ........
        r60703 | georg.brandl | 2008-02-09 23:00:00 +0100 (Sat, 09 Feb 2008) | 2 lines
      
        Fix link.
      ........
        r60704 | georg.brandl | 2008-02-10 00:09:25 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Fix for newest doctools.
      ........
        r60709 | raymond.hettinger | 2008-02-10 08:21:09 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Clarify that decimal also supports fixed-point arithmetic.
      ........
        r60710 | nick.coghlan | 2008-02-10 08:32:52 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Add missing NEWS entry for r60695
      ........
        r60712 | mark.dickinson | 2008-02-10 15:58:38 +0100 (Sun, 10 Feb 2008) | 3 lines
      
        Turn classmethods into staticmethods, and avoid calling the constructor
        of subclasses of Rational.  (See discussion in issue #1682.)
      ........
        r60715 | mark.dickinson | 2008-02-10 16:19:58 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Typos in decimal comment and documentation
      ........
        r60716 | skip.montanaro | 2008-02-10 16:31:54 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Get the saying right. ;-)
      ........
        r60717 | skip.montanaro | 2008-02-10 16:32:16 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        whoops - revert
      ........
        r60718 | mark.dickinson | 2008-02-10 20:23:36 +0100 (Sun, 10 Feb 2008) | 2 lines
      
        Remove reference to Rational
      ........
        r60719 | raymond.hettinger | 2008-02-10 21:35:16 +0100 (Sun, 10 Feb 2008) | 1 line
      
        Complete an open todo on pickletools -- add a pickle optimizer.
      ........
        r60721 | mark.dickinson | 2008-02-10 22:29:51 +0100 (Sun, 10 Feb 2008) | 3 lines
      
        Rename rational.Rational to fractions.Fraction, to avoid name clash
        with numbers.Rational.  See issue #1682 for related discussion.
      ........
        r60722 | christian.heimes | 2008-02-11 03:26:22 +0100 (Mon, 11 Feb 2008) | 1 line
      
        The test requires the network resource
      ........
        r60723 | mark.dickinson | 2008-02-11 04:11:55 +0100 (Mon, 11 Feb 2008) | 3 lines
      
        Put an extra space into the repr of a Fraction:
        Fraction(1, 2) instead of Fraction(1,2).
      ........
      3feef617
  10. 02 Ara, 2007 1 kayıt (commit)
  11. 06 Kas, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merging the py3k-pep3137 branch back into the py3k branch. · 98297ee7
      Guido van Rossum yazdı
      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
  12. 24 Eki, 2007 1 kayıt (commit)
  13. 16 Eki, 2007 1 kayıt (commit)
  14. 29 Agu, 2007 1 kayıt (commit)
  15. 27 Agu, 2007 1 kayıt (commit)
  16. 09 Agu, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch# 1770008 by Christian Heimes (plus some extras). · 34d19287
      Guido van Rossum yazdı
      Completely get rid of StringIO.py and cStringIO.c.
      
      I had to fix a few tests and modules beyond what Christian did, and
      invent a few conventions.  E.g. in elementtree, I chose to
      write/return Unicode strings whe no encoding is given, but bytes when
      an explicit encoding is given.  Also mimetools was made to always
      assume binary files.
      34d19287
  17. 20 Tem, 2007 1 kayıt (commit)
  18. 17 Tem, 2007 1 kayıt (commit)
  19. 12 Haz, 2007 1 kayıt (commit)
  20. 07 Haz, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merged revisions 55795-55816 via svnmerge from · 1325790b
      Guido van Rossum yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ........
        r55797 | neal.norwitz | 2007-06-07 00:00:57 -0700 (Thu, 07 Jun 2007) | 3 lines
      
        Get rid of some remnants of classic classes.  types.ClassType == type.
        Also get rid of almost all uses of the types module and use the builtin name.
      ........
        r55798 | neal.norwitz | 2007-06-07 00:12:36 -0700 (Thu, 07 Jun 2007) | 1 line
      
        Remove a use of types, verify commit hook works
      ........
        r55809 | guido.van.rossum | 2007-06-07 11:11:29 -0700 (Thu, 07 Jun 2007) | 2 lines
      
        Fix syntax error introduced by Neal in last checkin.
      ........
      1325790b
  21. 14 May, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merged revisions 55270-55324 via svnmerge from · a8add0ec
      Guido van Rossum yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ........
        r55271 | fred.drake | 2007-05-11 10:14:47 -0700 (Fri, 11 May 2007) | 3 lines
      
        remove jpeg, panel libraries for SGI; there is more IRIX stuff left over,
        I guess that should be removed too, but will leave for someone who is sure
      ........
        r55280 | fred.drake | 2007-05-11 19:11:37 -0700 (Fri, 11 May 2007) | 1 line
      
        remove mention of file that has been removed
      ........
        r55301 | brett.cannon | 2007-05-13 17:38:05 -0700 (Sun, 13 May 2007) | 4 lines
      
        Remove rexec and Bastion from the stdlib.  This also eliminates the need for
        f_restricted on frames.  This in turn negates the need for
        PyEval_GetRestricted() and PyFrame_IsRestricted().
      ........
        r55303 | brett.cannon | 2007-05-13 19:22:22 -0700 (Sun, 13 May 2007) | 2 lines
      
        Remove the md5 and sha modules.
      ........
        r55305 | george.yoshida | 2007-05-13 19:45:55 -0700 (Sun, 13 May 2007) | 2 lines
      
        fix markup
      ........
        r55306 | neal.norwitz | 2007-05-13 19:47:57 -0700 (Sun, 13 May 2007) | 1 line
      
        Get the doc building again after some removals.
      ........
        r55307 | neal.norwitz | 2007-05-13 19:50:45 -0700 (Sun, 13 May 2007) | 1 line
      
        Get test_pyclbr passing again after getstatus was removed from commands.  This "test case" was weird since it was just importing a seemingly random module.  Remove the import
      ........
        r55322 | brett.cannon | 2007-05-14 14:09:20 -0700 (Mon, 14 May 2007) | 3 lines
      
        Remove the compiler package.  Will eventually need a mechanism to byte compile
        an AST.
      ........
      a8add0ec
  22. 08 May, 2007 1 kayıt (commit)
  23. 07 May, 2007 1 kayıt (commit)
  24. 02 May, 2007 1 kayıt (commit)
  25. 26 Şub, 2007 1 kayıt (commit)
  26. 09 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum yazdı
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  27. 15 Ock, 2007 2 kayıt (commit)
  28. 18 Agu, 2006 1 kayıt (commit)
  29. 26 May, 2006 1 kayıt (commit)
  30. 15 Şub, 2005 1 kayıt (commit)
  31. 07 Ara, 2004 1 kayıt (commit)
  32. 06 Kas, 2004 1 kayıt (commit)
  33. 07 Agu, 2004 1 kayıt (commit)
  34. 05 Şub, 2003 1 kayıt (commit)
  35. 31 Ock, 2003 1 kayıt (commit)
  36. 30 Ock, 2003 2 kayıt (commit)