1. 01 Agu, 2010 1 kayıt (commit)
  2. 23 Şub, 2010 1 kayıt (commit)
  3. 22 Şub, 2010 1 kayıt (commit)
  4. 27 Tem, 2009 1 kayıt (commit)
  5. 06 May, 2009 1 kayıt (commit)
  6. 05 May, 2009 1 kayıt (commit)
  7. 02 May, 2009 1 kayıt (commit)
  8. 01 May, 2009 1 kayıt (commit)
  9. 30 Nis, 2009 1 kayıt (commit)
  10. 22 Nis, 2009 1 kayıt (commit)
  11. 16 Nis, 2009 1 kayıt (commit)
    • Eric Smith's avatar
      The other half of Issue #1580: use short float repr where possible. · 0923d1d8
      Eric Smith yazdı
      Addresses the float -> string conversion, using David Gay's code which
      was added in Mark Dickinson's checkin r71663.
      
      Also addresses these, which are intertwined with the short repr
      changes:
      
      - Issue #5772: format(1e100, '<') produces '1e+100', not '1.0e+100'
      - Issue #5515: 'n' formatting with commas no longer works poorly
          with leading zeros.
      - PEP 378 Format Specifier for Thousands Separator: implemented
          for floats.
      0923d1d8
  12. 13 Nis, 2009 1 kayıt (commit)
  13. 04 Nis, 2009 1 kayıt (commit)
  14. 03 Nis, 2009 2 kayıt (commit)
  15. 29 Mar, 2009 1 kayıt (commit)
  16. 20 Şub, 2009 1 kayıt (commit)
  17. 24 Agu, 2008 1 kayıt (commit)
    • Neal Norwitz's avatar
      Merged revisions 66006 via svnmerge from · 2f99b241
      Neal Norwitz yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      TESTED=./python -E -tt ./Lib/test/regrtest.py -uall (both debug and opt modes)
      
      ........
        r66006 | neal.norwitz | 2008-08-23 22:04:52 -0700 (Sat, 23 Aug 2008) | 25 lines
      
        Fix:
         * crashes on memory allocation failure found with failmalloc
         * memory leaks found with valgrind
         * compiler warnings in opt mode which would lead to invalid memory reads
         * problem using wrong name in decimal module reported by pychecker
      
        Update the valgrind suppressions file with new leaks that are small/one-time
        leaks we don't care about (ie, they are too hard to fix).
      
        TBR=barry
        TESTED=./python -E -tt ./Lib/test/regrtest.py -uall (both debug and opt modes)
          in opt mode:
          valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
            ./python -E -tt ./Lib/test/regrtest.py -uall,-bsddb,-compiler \
                                -x test_logging test_ssl test_multiprocessing
          valgrind -q --leak-check=yes --suppressions=Misc/valgrind-python.supp \
            ./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
          for i in `seq 1 4000` ; do
            LD_PRELOAD=~/local/lib/libfailmalloc.so FAILMALLOC_INTERVAL=$i \
                ./python -c pass
          done
      
        At least some of these fixes should probably be backported to 2.5.
      ........
      2f99b241
  18. 17 Tem, 2008 2 kayıt (commit)
  19. 16 Tem, 2008 2 kayıt (commit)
  20. 15 Tem, 2008 1 kayıt (commit)
    • Eric Smith's avatar
      Forward port of r64958. · b1ebcc6b
      Eric Smith yazdı
      Added '#' formatting to integers.  This adds the 0b, 0o, or 0x prefix for bin, oct, hex.  There's still one failing case, and I need to finish the docs.  I hope to finish those today.
      b1ebcc6b
  21. 24 Haz, 2008 3 kayıt (commit)
  22. 30 May, 2008 1 kayıt (commit)
  23. 26 May, 2008 1 kayıt (commit)
  24. 11 May, 2008 1 kayıt (commit)
    • Eric Smith's avatar
      Merged revisions 63078 via svnmerge from · 5807c415
      Eric Smith yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      When forward porting this, I added _PyUnicode_InsertThousandsGrouping.
      
      ........
        r63078 | eric.smith | 2008-05-11 15:52:48 -0400 (Sun, 11 May 2008) | 14 lines
      
        Addresses issue 2802: 'n' formatting for integers.
      
        Adds 'n' as a format specifier for integers, to mirror the same
        specifier which is already available for floats.  'n' is the same as
        'd', but inserts the current locale-specific thousands grouping.
      
        I added this as a stringlib function, but it's only used by str type,
        not unicode.  This is because of an implementation detail in
        unicode.format(), which does its own str->unicode conversion.  But the
        unicode version will be needed in 3.0, and it may be needed by other
        code eventually in 2.6 (maybe decimal?), so I left it as a stringlib
        implementation.  As long as the unicode version isn't instantiated,
        there's no overhead for this.
      ........
      5807c415
  25. 07 Nis, 2008 1 kayıt (commit)
  26. 18 Mar, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · b186d008
      Christian Heimes yazdı
      Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61431 | vinay.sajip | 2008-03-16 22:35:58 +0100 (So, 16 Mär 2008) | 1 line
      
        Clarified documentation on use of shutdown().
      ........
        r61433 | mark.summerfield | 2008-03-17 09:28:15 +0100 (Mo, 17 Mär 2008) | 5 lines
      
        Added a footnote to each pointing out that for XML output if an encoding
        string is given it should conform to the appropriate XML standards---for
        example, "UTF-8" is okay, but "UTF8" is not.
      ........
        r61434 | eric.smith | 2008-03-17 12:01:01 +0100 (Mo, 17 Mär 2008) | 7 lines
      
        Issue 2264: empty float presentation type needs to have at least one digit past the decimal point.
      
        Added "Z" format_char to PyOS_ascii_formatd to support empty float presentation type.
        Renamed buf_size in PyOS_ascii_formatd to more accurately reflect it's meaning.
        Modified format.__float__ to use the new "Z" format as the default.
        Added test cases.
      ........
        r61435 | eric.smith | 2008-03-17 13:14:29 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Reformated lines > 79 chars.
        Deleted unused macro ISXDIGIT.
      ........
        r61436 | jeffrey.yasskin | 2008-03-17 15:40:53 +0100 (Mo, 17 Mär 2008) | 13 lines
      
        Allow Gnu gcc's to build python on OSX by removing -Wno-long-double,
        -no-cpp-precomp, and -mno-fused-madd from configure.
         * r22183 added -no-cpp-precomp, which
           http://gcc.gnu.org/ml/gcc/2005-12/msg00368.html claims hasn't been
           needed since gcc-3.1.
         * r25607 added -Wno-long-double to avoid a warning in
           Include/objimpl.h (issue 525481). The long double is still there,
           but OSX 10.4's gcc no longer warns about it.
         * r33666 fixed issue 775892 on OSX 10.3 by adding -mno-fused-madd,
           which changed the sign of some float 0s. Tim Peters said it wasn't
           a real issue anyway, and it no longer causes test failures.
        Fixes issue #1779871.
      ........
        r61439 | martin.v.loewis | 2008-03-17 17:31:57 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Add Trent Nelson.
      ........
        r61444 | travis.oliphant | 2008-03-17 18:36:12 +0100 (Mo, 17 Mär 2008) | 1 line
      
        Add necessary headers to back-port new buffer protocol to Python 2.6
      ........
        r61449 | gregory.p.smith | 2008-03-17 19:48:05 +0100 (Mo, 17 Mär 2008) | 8 lines
      
        Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms
        regardless of the native sizeof(long) used in the integer object.
      
        This somewhat odd behavior of returning a signed is maintained in 2.x for
        compatibility reasons of always returning an integer rather than a long object.
      
        Fixes Issue1202 for Python 2.6
      ........
        r61450 | neal.norwitz | 2008-03-17 20:02:45 +0100 (Mo, 17 Mär 2008) | 3 lines
      
        Use a buffer large enough to ensure we don't overrun, even if the value
        is outside the range we expect.
      ........
        r61453 | steven.bethard | 2008-03-17 20:33:11 +0100 (Mo, 17 Mär 2008) | 1 line
      
        Document unicode.isnumeric() and unicode.isdecimal() (issue2326)
      ........
        r61458 | neal.norwitz | 2008-03-17 21:22:43 +0100 (Mo, 17 Mär 2008) | 5 lines
      
        Issue 2321: reduce memory usage (increase the memory that is returned
        to the system) by using pymalloc for the data of unicode objects.
      
        Will backport.
      ........
        r61465 | martin.v.loewis | 2008-03-17 22:55:30 +0100 (Mo, 17 Mär 2008) | 2 lines
      
        Add David Wolever.
      ........
        r61468 | gregory.p.smith | 2008-03-18 01:20:01 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Fix the IOError message text when opening a file with an invalid filename.
        Error reported by Ilan Schnell.
      ........
        r61471 | brett.cannon | 2008-03-18 02:00:07 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Convert test_strftime, test_getargs, and test_pep247 to use unittest.
      ........
        r61472 | jeffrey.yasskin | 2008-03-18 02:09:59 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster.
      ........
        r61473 | brett.cannon | 2008-03-18 02:50:25 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Convert test_dummy_threading and test_dbm to unittest.
      ........
        r61474 | brett.cannon | 2008-03-18 02:58:56 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Move test_extcall to doctest.
      ........
        r61480 | brett.cannon | 2008-03-18 04:46:22 +0100 (Di, 18 Mär 2008) | 2 lines
      
        test_errno was a no-op test; now it actually tests things and uses unittest.
      ........
        r61483 | brett.cannon | 2008-03-18 05:09:00 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Remove our implementation of memmove() and strerror(); both are in the C89
        standard library.
      ........
        r61484 | brett.cannon | 2008-03-18 05:16:06 +0100 (Di, 18 Mär 2008) | 2 lines
      
        The output directory for tests that compare against stdout is now gone!
      ........
        r61488 | jeffrey.yasskin | 2008-03-18 05:29:35 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Block the "socket.ssl() is deprecated" warning from test_socket_ssl.
      ........
        r61495 | jeffrey.yasskin | 2008-03-18 05:56:06 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Speed test_thread up from 51.328s to 0.081s by reducing its sleep times. We
        still sleep at all to make it likely that all threads are active at the same
        time.
      ........
        r61496 | jeffrey.yasskin | 2008-03-18 06:12:41 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Speed up test_dict by about 10x by only checking selected dict literal sizes,
        instead of every integer from 0 to 400. Exhaustive testing wastes time without
        providing enough more assurance that the code is correct.
      ........
        r61498 | neal.norwitz | 2008-03-18 06:20:29 +0100 (Di, 18 Mär 2008) | 1 line
      
        Try increasing the timeout to reduce the flakiness of this test.
      ........
        r61503 | brett.cannon | 2008-03-18 06:43:04 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Improve the error message for a test that failed on the S-390 Debian buildbot.
      ........
        r61504 | jeffrey.yasskin | 2008-03-18 06:45:40 +0100 (Di, 18 Mär 2008) | 3 lines
      
        Add a -S/--slow flag to regrtest to have it print the 10 slowest tests with
        their times.
      ........
        r61507 | neal.norwitz | 2008-03-18 07:03:46 +0100 (Di, 18 Mär 2008) | 1 line
      
        Add some info to the failure messages
      ........
        r61509 | trent.nelson | 2008-03-18 08:02:12 +0100 (Di, 18 Mär 2008) | 1 line
      
        Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000.  The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH.
      ........
        r61510 | trent.nelson | 2008-03-18 08:32:47 +0100 (Di, 18 Mär 2008) | 5 lines
      
        The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either:
            a) no sound card entirely
            b) legacy beep driver has been disabled
            c) the legacy beep driver has been uninstalled
        Sometimes RuntimeErrors are raised, sometimes they're not.  If _have_soundcard() returns False, don't expect winsound.Beep() to raise a RuntimeError, as this clearly isn't the case, as demonstrated by the various Win32 XP buildbots.
      ........
        r61515 | martin.v.loewis | 2008-03-18 13:20:15 +0100 (Di, 18 Mär 2008) | 2 lines
      
        norwitz-amd64 (gentoo) has EREMOTEIO.
      ........
        r61516 | martin.v.loewis | 2008-03-18 13:45:37 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Add more Linux error codes.
      ........
        r61517 | martin.v.loewis | 2008-03-18 14:05:03 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Add WSA errors.
      ........
        r61518 | martin.v.loewis | 2008-03-18 14:16:05 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Note that the stderr output of the test is intentional.
      ........
      b186d008
  27. 22 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · c3f30c43
      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-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
      
        Added PEP 3101.
      ........
        r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
      
        Fixes contributed by Ori Avtalion.
      ........
        r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Trim leading zeros from a floating point exponent, per C99.  See issue 1600.  As far as I know, this only affects Windows.  Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
      ........
        r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
      ........
        r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Close manifest file.
        This change doesn't make any difference to CPython, but is a necessary fix for Jython.
      ........
        r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Remove news about float repr() -- issue 1580 is still in limbo.
      ........
        r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
      
        Removed uses of dict.has_key() from distutils, and uses of
        callable() from copy_reg.py, so the interpreter now starts up
        without warnings when '-3' is given.  More work like this needs to
        be done in the rest of the stdlib.
      ........
        r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
      
        configure.ac: Remove the configure check for _Bool, it is already done in the
        top-level Python configure script.
        configure, fficonfig.h.in: regenerated.
      ........
        r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
      
        Replace 'has_key()' with 'in'.
        Replace 'raise Error, stuff' with 'raise Error(stuff)'.
      ........
        r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
      
        Update more instances of has_key().
      ........
        r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
      
        Fix a few typos and layout glitches (more work is needed).
        Move 2.5 news to Misc/HISTORY.
      ........
        r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        #2079: typo in userdict docs.
      ........
        r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
      
        Part of #2154: minimal syntax fixes in doc example snippets.
      ........
        r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
      
        First draft for itertools.product().  Docs and other updates forthcoming.
      ........
        r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
      
        Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
      ........
        r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        A lot more typo fixes by Ori Avtalion.
      ........
        r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        Don't reference pyshell.
      ........
        r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
      
        Another fix.
      ........
      c3f30c43
  28. 17 Şub, 2008 1 kayıt (commit)
    • Eric Smith's avatar
      Fixes for shared 2.6 code that implements PEP 3101, advanced string · 8fd3eba0
      Eric Smith yazdı
      formatting.
      
      Includes:
       - Modifying tests for basic types to use __format__ methods, instead
         of builtin "format".
       - Adding PyObject_Format.
       - General str/unicode cleanup discovered when backporting to 2.6.
       - Removing datetimemodule.c's time_format, since it was identical
         to date_format.
      
      The files in Objects/stringlib that implement PEP 3101 (stringdefs.h,
      unicodedefs.h, formatter.h, string_format.h) are identical in trunk
      and py3k.  Any changes from here on should be made to trunk, and
      changes will propogate to py3k).
      8fd3eba0
  29. 28 Ock, 2008 1 kayıt (commit)
  30. 27 Ock, 2008 1 kayıt (commit)
  31. 02 Ara, 2007 1 kayıt (commit)
  32. 01 Eyl, 2007 1 kayıt (commit)
  33. 30 Agu, 2007 1 kayıt (commit)
  34. 29 Agu, 2007 2 kayıt (commit)