1. 27 Eyl, 2010 1 kayıt (commit)
  2. 08 Agu, 2010 1 kayıt (commit)
  3. 09 May, 2010 1 kayıt (commit)
  4. 14 Mar, 2010 1 kayıt (commit)
  5. 02 Tem, 2009 2 kayıt (commit)
  6. 01 Nis, 2009 1 kayıt (commit)
  7. 02 Mar, 2009 1 kayıt (commit)
  8. 13 Haz, 2008 1 kayıt (commit)
  9. 26 May, 2008 2 kayıt (commit)
  10. 05 Nis, 2008 1 kayıt (commit)
  11. 09 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 77c02ebf
      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-60678 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60618 | walter.doerwald | 2008-02-06 15:31:55 +0100 (Wed, 06 Feb 2008) | 6 lines
      
        Remove month parameter from Calendar.yeardatescalendar(),
        Calendar.yeardays2calendar() and Calendar.yeardayscalendar() as the methods
        don't have such a parameter. Fixes issue #2017.
      
        Rewrap content to 80 chars.
      ........
        r60622 | facundo.batista | 2008-02-06 20:28:49 +0100 (Wed, 06 Feb 2008) | 4 lines
      
      
        Fixes issue 1959. Converted tests to unittest.
        Thanks Giampaolo Rodola.
      ........
        r60626 | thomas.heller | 2008-02-06 21:29:17 +0100 (Wed, 06 Feb 2008) | 3 lines
      
        Fixed refcounts and error handling.
      
        Should not be merged to py3k branch.
      ........
        r60630 | mark.dickinson | 2008-02-06 23:10:50 +0100 (Wed, 06 Feb 2008) | 4 lines
      
        Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN
        raise InvalidOperation (and return False if InvalidOperation is trapped).
      ........
        r60632 | mark.dickinson | 2008-02-06 23:25:16 +0100 (Wed, 06 Feb 2008) | 2 lines
      
        Remove incorrect usage of :const: in documentation.
      ........
        r60634 | georg.brandl | 2008-02-07 00:45:51 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Revert accidental changes to test_queue in r60605.
      ........
        r60636 | raymond.hettinger | 2008-02-07 01:54:20 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Issue 2025:  Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence.
      ........
        r60637 | mark.dickinson | 2008-02-07 02:14:23 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Fix broken link in decimal documentation.
      ........
        r60638 | mark.dickinson | 2008-02-07 02:42:06 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        IEEE 754 should be IEEE 854;  give precise reference for
        comparisons involving NaNs.
      ........
        r60639 | raymond.hettinger | 2008-02-07 03:12:52 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Return ints instead of longs for tuple.count() and tuple.index().
      ........
        r60640 | raymond.hettinger | 2008-02-07 04:10:33 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Merge 60627.
      ........
        r60641 | raymond.hettinger | 2008-02-07 04:25:46 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Merge r60628, r60631, and r60633.  Register UserList and UserString will the appropriate ABCs.
      ........
        r60642 | brett.cannon | 2008-02-07 08:47:31 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Cast a struct to a void pointer so as to do a type-safe pointer comparison
        (mistmatch found by clang).
      ........
        r60643 | brett.cannon | 2008-02-07 09:04:07 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Remove unnecessary curly braces around an int literal.
      ........
        r60644 | andrew.kuchling | 2008-02-07 12:43:47 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Update URL
      ........
        r60645 | facundo.batista | 2008-02-07 17:16:29 +0100 (Thu, 07 Feb 2008) | 4 lines
      
      
        Fixes issue 2026.  Tests converted to unittest.  Thanks
        Giampaolo Rodola.
      ........
        r60646 | christian.heimes | 2008-02-07 18:15:30 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet.
      ........
        r60648 | facundo.batista | 2008-02-07 20:06:52 +0100 (Thu, 07 Feb 2008) | 6 lines
      
      
        Fixes Issue 1401. When redirected, a possible POST get converted
        to GET, so it loses its payload. So, it also must lose the
        headers related to the payload (if it has no content any more,
        it shouldn't indicate content length and type).
      ........
        r60649 | walter.doerwald | 2008-02-07 20:30:22 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Clarify that the output of TextCalendar.formatmonth() and
        TextCalendar.formatyear() for custom instances won't be influenced by calls
        to the module global setfirstweekday() function. Fixes #2018.
      ........
        r60651 | walter.doerwald | 2008-02-07 20:48:34 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Fix documentation for Calendar.iterweekdays(): firstweekday is a property.
        Fixes second part of #2018.
      ........
        r60653 | walter.doerwald | 2008-02-07 20:57:32 +0100 (Thu, 07 Feb 2008) | 2 lines
      
        Fix typo in docstring for Calendar.itermonthdays().
      ........
        r60655 | raymond.hettinger | 2008-02-07 21:04:37 +0100 (Thu, 07 Feb 2008) | 1 line
      
        The float conversion recipe is simpler in Py2.6
      ........
        r60657 | raymond.hettinger | 2008-02-07 21:10:49 +0100 (Thu, 07 Feb 2008) | 1 line
      
        Fix typo
      ........
        r60660 | brett.cannon | 2008-02-07 23:27:10 +0100 (Thu, 07 Feb 2008) | 3 lines
      
        Make sure a switch statement does not have repetitive case statements.
        Error found through LLVM post-2.1 svn.
      ........
        r60661 | christian.heimes | 2008-02-08 01:11:31 +0100 (Fri, 08 Feb 2008) | 1 line
      
        Deallocate content of the dict free list on interpreter shutdown
      ........
        r60662 | christian.heimes | 2008-02-08 01:14:34 +0100 (Fri, 08 Feb 2008) | 1 line
      
        Use prefix decrement
      ........
        r60663 | amaury.forgeotdarc | 2008-02-08 01:56:02 +0100 (Fri, 08 Feb 2008) | 5 lines
      
        issue 2045: Infinite recursion when printing a subclass of defaultdict,
        if default_factory is set to a bound method.
      
        Will backport.
      ........
        r60667 | jeffrey.yasskin | 2008-02-08 07:45:40 +0100 (Fri, 08 Feb 2008) | 2 lines
      
        Oops! 2.6's Rational.__ne__ didn't work.
      ........
        r60671 | hyeshik.chang | 2008-02-08 18:10:20 +0100 (Fri, 08 Feb 2008) | 2 lines
      
        Update big5hkscs codec to conform to the HKSCS:2004 revision.
      ........
        r60673 | raymond.hettinger | 2008-02-08 23:30:04 +0100 (Fri, 08 Feb 2008) | 4 lines
      
        Remove unnecessary modulo division.
        The preceding test guarantees that 0 <= i < len.
      ........
        r60674 | raymond.hettinger | 2008-02-09 00:02:27 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Speed-up __iter__() mixin method.
      ........
        r60675 | raymond.hettinger | 2008-02-09 00:34:21 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Fill-in missing Set comparisons
      ........
        r60677 | raymond.hettinger | 2008-02-09 00:57:06 +0100 (Sat, 09 Feb 2008) | 1 line
      
        Add advice on choosing between DictMixin and MutableMapping
      ........
      77c02ebf
  12. 02 Ara, 2007 1 kayıt (commit)
  13. 04 Eyl, 2007 1 kayıt (commit)
  14. 21 Mar, 2007 1 kayıt (commit)
  15. 27 Şub, 2007 1 kayıt (commit)
  16. 15 Mar, 2006 1 kayıt (commit)
  17. 01 Mar, 2006 1 kayıt (commit)
  18. 28 Şub, 2006 2 kayıt (commit)
    • Thomas Wouters's avatar
    • Thomas Wouters's avatar
      SF patch #1438387, PEP 328: relative and absolute imports. · f7f438ba
      Thomas Wouters yazdı
       - IMPORT_NAME takes an extra argument from the stack: the relativeness of
         the import. Only passed to __import__ when it's not -1.
      
       - __import__() takes an optional 5th argument for the same thing; it
         __defaults to -1 (old semantics: try relative, then absolute)
      
       - 'from . import name' imports name (be it module or regular attribute)
         from the current module's *package*. Likewise, 'from .module import name'
         will import name from a sibling to the current module.
      
       - Importing from outside a package is not allowed; 'from . import sys' in a
         toplevel module will not work, nor will 'from .. import sys' in a
         (single-level) package.
      
       - 'from __future__ import absolute_import' will turn on the new semantics
         for import and from-import: imports will be absolute, except for
         from-import with dots.
      
      Includes tests for regular imports and importhooks, parser changes and a
      NEWS item, but no compiler-package changes or documentation changes.
      f7f438ba
  19. 26 Şub, 2006 1 kayıt (commit)
  20. 25 Şub, 2006 1 kayıt (commit)
  21. 05 Ock, 2006 1 kayıt (commit)
  22. 18 Ara, 2005 1 kayıt (commit)
  23. 17 Ara, 2005 1 kayıt (commit)
  24. 23 Eki, 2005 1 kayıt (commit)
  25. 20 Eki, 2005 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Merge ast-branch to head · 3e0055f8
      Jeremy Hylton yazdı
      This change implements a new bytecode compiler, based on a
      transformation of the parse tree to an abstract syntax defined in
      Parser/Python.asdl.
      
      The compiler implementation is not complete, but it is in stable
      enough shape to run the entire test suite excepting two disabled
      tests.
      3e0055f8
  26. 01 Agu, 2005 1 kayıt (commit)
    • Raymond Hettinger's avatar
      * Improve code for the empty frozenset singleton: · d7946660
      Raymond Hettinger yazdı
        - Handle both frozenset() and frozenset([]).
        - Do not use singleton for frozenset subclasses.
        - Finalize the singleton.
        - Add test cases.
      * Factor-out set_update_internal() from set_update().  Simplifies the
        code for several internal callers.
      * Factor constant expressions out of loop in set_merge_internal().
      * Minor comment touch-ups.
      d7946660
  27. 27 May, 2005 1 kayıt (commit)
    • Michael W. Hudson's avatar
      This is my patch: · ba283e2b
      Michael W. Hudson yazdı
      [ 1181301 ] make float packing copy bytes when they can
      
      which hasn't been reviewed, despite numerous threats to check it in
      anyway if noone reviews it.  Please read the diff on the checkin list,
      at least!
      
      The basic idea is to examine the bytes of some 'probe values' to see if
      the current platform is a IEEE 754-ish platform, and if so
      _PyFloat_{Pack,Unpack}{4,8} just copy bytes around.
      
      The rest is hair for testing, and tests.
      ba283e2b
  28. 07 Eki, 2004 1 kayıt (commit)
  29. 19 Agu, 2004 1 kayıt (commit)
  30. 09 Agu, 2004 1 kayıt (commit)
  31. 13 Şub, 2003 1 kayıt (commit)
    • Guido van Rossum's avatar
      - Finally fixed the bug in compile() and exec where a string ending · 4b499dd3
      Guido van Rossum yazdı
        with an indented code block but no newline would raise SyntaxError.
        This would have been a four-line change in parsetok.c...  Except
        codeop.py depends on this behavior, so a compilation flag had to be
        invented that causes the tokenizer to revert to the old behavior;
        this required extra changes to 2 .h files, 2 .c files, and 2 .py
        files.  (Fixes SF bug #501622.)
      4b499dd3
  32. 10 Şub, 2003 1 kayıt (commit)
  33. 01 Ock, 2003 1 kayıt (commit)
  34. 31 Ara, 2002 1 kayıt (commit)
  35. 30 Ara, 2002 2 kayıt (commit)
    • Neal Norwitz's avatar
      SF #561244, Micro optimizations · c91ed400
      Neal Norwitz yazdı
      Initialize the small integers and __builtins__ in startup.
      This removes some if conditions.
      Change XDECREF to DECREF for values which shouldn't be NULL.
      c91ed400
    • Just van Rossum's avatar
      PEP 302 + zipimport: · 52e14d64
      Just van Rossum yazdı
      - new import hooks in import.c, exposed in the sys module
      - new module called 'zipimport'
      - various changes to allow bootstrapping from zip files
      
      I hope I didn't break the Windows build (or anything else for that
      matter), but then again, it's been sitting on sf long enough...
      
      Regarding the latest discussions on python-dev: zipimport sets
      pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as
      /path/to/Archive.zip/subdir/ are supported again.
      52e14d64
  36. 11 Ara, 2002 1 kayıt (commit)