1. 21 Haz, 2002 1 kayıt (commit)
  2. 18 Haz, 2002 3 kayıt (commit)
  3. 17 Haz, 2002 1 kayıt (commit)
    • Walter Dörwald's avatar
      Apply diff2.txt from SF patch http://www.python.org/sf/566999 · 3430d70e
      Walter Dörwald yazdı
      This patch enhances Python/import.c/find_module() so
      that unicode objects found in sys.path will be treated
      as legal directory names (The current code ignores
      anything that is not a str). The unicode name is
      converted to str using Py_FileSystemDefaultEncoding.
      3430d70e
  4. 14 Haz, 2002 4 kayıt (commit)
    • Guido van Rossum's avatar
      9562bcf3
    • Guido van Rossum's avatar
      SF patch 568629 by Oren Tirosh: types made callable. · bea18ccd
      Guido van Rossum yazdı
      These built-in functions are replaced by their (now callable) type:
      
          slice()
          buffer()
      
      and these types can also be called (but have no built-in named
      function named after them)
      
          classobj (type name used to be "class")
          code
          function
          instance
          instancemethod (type name used to be "instance method")
      
      The module "new" has been replaced with a small backward compatibility
      placeholder in Python.
      
      A large portion of the patch simply removes the new module from
      various platform-specific build recipes.  The following binary Mac
      project files still have references to it:
      
          Mac/Build/PythonCore.mcp
          Mac/Build/PythonStandSmall.mcp
          Mac/Build/PythonStandalone.mcp
      
      [I've tweaked the code layout and the doc strings here and there, and
      added a comment to types.py about StringTypes vs. basestring.  --Guido]
      bea18ccd
    • Skip Montanaro's avatar
      This introduces stricter library/header file checking for the Berkeley DB · 57454e57
      Skip Montanaro yazdı
      library.  Since multiple versions can be installed simultaneously, it's
      crucial that you only select libraries and header files which are compatible
      with each other.  Version checking is done from highest version to lowest.
      Building using version 1 of Berkeley DB is disabled by default because of
      the hash file bugs people keep rediscovering.  It can be enabled by
      uncommenting a few lines in setup.py.  Closes patch 553108.
      57454e57
    • Neal Norwitz's avatar
      SF bug # 493951 string.{starts,ends}with vs slices · 1f68fc7f
      Neal Norwitz yazdı
      Handle negative indices similar to slices.
      1f68fc7f
  5. 13 Haz, 2002 2 kayıt (commit)
  6. 12 Haz, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF bug 567538: Generator can crash the interpreter (Finn Bock). · c5fe5eb8
      Guido van Rossum yazdı
      This was a simple typo.  Strange that the compiler didn't catch it!
      Instead of WHY_CONTINUE, two tests used CONTINUE_LOOP, which isn't a
      why_code at all, but an opcode; but even though 'why' is declared as
      an enum, comparing it to an int is apparently not even worth a
      warning -- not in gcc, and not in VC++. :-(
      
      Will fix in 2.2 too.
      c5fe5eb8
  7. 11 Haz, 2002 2 kayıt (commit)
  8. 10 Haz, 2002 2 kayıt (commit)
  9. 09 Haz, 2002 1 kayıt (commit)
  10. 07 Haz, 2002 2 kayıt (commit)
  11. 06 Haz, 2002 2 kayıt (commit)
  12. 04 Haz, 2002 5 kayıt (commit)
  13. 31 May, 2002 1 kayıt (commit)
  14. 30 May, 2002 3 kayıt (commit)
  15. 29 May, 2002 1 kayıt (commit)
  16. 27 May, 2002 1 kayıt (commit)
    • Michael W. Hudson's avatar
      This is patch · 34f20eac
      Michael W. Hudson yazdı
      [ 559250 ] more POSIX signal stuff
      
      Adds support (and docs and tests and autoconfery) for posix signal
      mask handling -- sigpending, sigprocmask and sigsuspend.
      34f20eac
  17. 24 May, 2002 1 kayıt (commit)
  18. 23 May, 2002 2 kayıt (commit)
  19. 21 May, 2002 1 kayıt (commit)
  20. 20 May, 2002 1 kayıt (commit)
  21. 16 May, 2002 1 kayıt (commit)
  22. 13 May, 2002 1 kayıt (commit)
  23. 12 May, 2002 1 kayıt (commit)