1. 30 Oct, 2008 4 commits
  2. 26 Oct, 2008 1 commit
  3. 24 Oct, 2008 1 commit
  4. 22 Oct, 2008 1 commit
  5. 21 Oct, 2008 3 commits
  6. 20 Oct, 2008 1 commit
  7. 17 Oct, 2008 1 commit
  8. 16 Oct, 2008 2 commits
  9. 15 Oct, 2008 1 commit
  10. 14 Oct, 2008 1 commit
  11. 13 Oct, 2008 1 commit
  12. 10 Oct, 2008 1 commit
  13. 09 Oct, 2008 1 commit
    • Hirokazu Yamamoto's avatar
      Merged revisions 66809-66810,66835,66862-66863 via svnmerge from · 2c66b7cd
      Hirokazu Yamamoto authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r66809 | hirokazu.yamamoto | 2008-10-06 10:57:03 +0900 | 1 line
      
        Added the test for issue3762.
      ........
        r66810 | hirokazu.yamamoto | 2008-10-06 11:41:59 +0900 | 1 line
      
        More strict test. Consider the case sys.executable itself is symlink.
      ........
        r66835 | hirokazu.yamamoto | 2008-10-08 03:10:47 +0900 | 1 line
      
        more intensive test on dbm.
      ........
        r66862 | hirokazu.yamamoto | 2008-10-09 19:00:30 +0900 | 3 lines
      
        On windows, os.chdir given unicode was not working if GetCurrentDirectoryW
        returned a path longer than MAX_PATH. (But It's doubtful this code path is
        really executed because I cannot move to such directory on win2k)
      ........
        r66863 | hirokazu.yamamoto | 2008-10-09 19:11:21 +0900 | 1 line
      
        r66862 contained memory leak.
      ........
      2c66b7cd
  14. 08 Oct, 2008 3 commits
  15. 07 Oct, 2008 4 commits
  16. 06 Oct, 2008 2 commits
  17. 04 Oct, 2008 4 commits
    • Benjamin Peterson's avatar
      Merged revisions... · be2c0a9f
      Benjamin Peterson authored
      Merged revisions 66766-66767,66771-66772,66774,66776,66783-66787,66790,66793,66797 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ................
        r66766 | benjamin.peterson | 2008-10-03 06:52:06 -0500 (Fri, 03 Oct 2008) | 1 line
      
        update the mac installer script
      ................
        r66767 | andrew.kuchling | 2008-10-03 07:26:42 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Docstring typo.
      ................
        r66771 | hirokazu.yamamoto | 2008-10-03 11:18:42 -0500 (Fri, 03 Oct 2008) | 2 lines
      
        Fixed following error when DocXMLRPCServer failed.
          UnboundLocalError: local variable 'serv' referenced before assignment
      ................
        r66772 | andrew.kuchling | 2008-10-03 11:29:19 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Mention exception in docstring
      ................
        r66774 | andrew.kuchling | 2008-10-03 11:42:52 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Typo fix
      ................
        r66776 | hirokazu.yamamoto | 2008-10-03 12:34:49 -0500 (Fri, 03 Oct 2008) | 2 lines
      
        Issue #1706863: Fixed "'NoneType' object has no attribute 'rfind'" error when sqlite libfile not found.
      ................
        r66783 | andrew.kuchling | 2008-10-03 20:02:29 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Use correct capitalization of NaN
      ................
        r66784 | andrew.kuchling | 2008-10-03 20:03:42 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Docstring change: Specify exception raised
      ................
        r66785 | andrew.kuchling | 2008-10-03 20:04:24 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Docstring changes: Specify exceptions raised
      ................
        r66786 | andrew.kuchling | 2008-10-03 20:05:56 -0500 (Fri, 03 Oct 2008) | 3 lines
      
        Docstring change for *partition: use same tense as other docstrings.
        Hyphenate left- and right-justified.
        Fix 'registerd' typo
      ................
        r66787 | andrew.kuchling | 2008-10-03 22:08:56 -0500 (Fri, 03 Oct 2008) | 1 line
      
        two corrections
      ................
        r66790 | andrew.kuchling | 2008-10-04 11:52:01 -0500 (Sat, 04 Oct 2008) | 1 line
      
        Set svn:keywords
      ................
        r66793 | georg.brandl | 2008-10-04 13:26:01 -0500 (Sat, 04 Oct 2008) | 2 lines
      
        #4041: don't refer to removed and outdated modules.
      ................
        r66797 | benjamin.peterson | 2008-10-04 15:55:50 -0500 (Sat, 04 Oct 2008) | 19 lines
      
        Merged revisions 66707,66775,66782 via svnmerge from
        svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
      
        ........
          r66707 | benjamin.peterson | 2008-09-30 18:27:10 -0500 (Tue, 30 Sep 2008) | 1 line
      
          fix #4001: fix_imports didn't check for __init__.py before converting to relative imports
        ........
          r66775 | collin.winter | 2008-10-03 12:08:26 -0500 (Fri, 03 Oct 2008) | 4 lines
      
          Add an alternative iterative pattern matching system that, while slower, correctly parses files that cause the faster recursive pattern matcher to fail with a recursion error. lib2to3 falls back to the iterative matcher if the recursive one fails.
      
          Fixes http://bugs.python.org/issue2532. Thanks to Nick Edds.
        ........
          r66782 | benjamin.peterson | 2008-10-03 17:51:36 -0500 (Fri, 03 Oct 2008) | 1 line
      
          add Victor Stinner's fixer for os.getcwdu -> os.getcwd #4023
        ........
      ................
      be2c0a9f
    • Benjamin Peterson's avatar
      Blocked revisions 66721-66722,66744-66745,66752,66756,66763-66765,66768,66791-66792 via svnmerge · 81f66f3c
      Benjamin Peterson authored
      ........
        r66721 | barry.warsaw | 2008-10-01 22:33:51 -0500 (Wed, 01 Oct 2008) | 1 line
      
        Bump to 2.7a0
      ........
        r66722 | martin.v.loewis | 2008-10-02 06:44:17 -0500 (Thu, 02 Oct 2008) | 1 line
      
        Use CRT 9 policy files.
      ........
        r66744 | benjamin.peterson | 2008-10-02 14:00:31 -0500 (Thu, 02 Oct 2008) | 1 line
      
        we're in 2.7 now
      ........
        r66745 | georg.brandl | 2008-10-02 14:09:47 -0500 (Thu, 02 Oct 2008) | 2 lines
      
        Forward-port r66736.
      ........
        r66752 | martin.v.loewis | 2008-10-02 15:04:47 -0500 (Thu, 02 Oct 2008) | 2 lines
      
        Add UUID for 2.7.
      ........
        r66756 | benjamin.peterson | 2008-10-02 15:46:58 -0500 (Thu, 02 Oct 2008) | 1 line
      
        update pydoc topics
      ........
        r66763 | neal.norwitz | 2008-10-02 23:13:08 -0500 (Thu, 02 Oct 2008) | 1 line
      
        Update the version to 2.7.  Hopefully this fixes the test_distutils failure
      ........
        r66764 | martin.v.loewis | 2008-10-03 03:59:41 -0500 (Fri, 03 Oct 2008) | 2 lines
      
        Bump version to 2.7. Regenerate.
      ........
        r66765 | martin.v.loewis | 2008-10-03 05:59:55 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Update version number to 2.7.
      ........
        r66768 | hirokazu.yamamoto | 2008-10-03 11:07:28 -0500 (Fri, 03 Oct 2008) | 1 line
      
        Follows to python's version change (VC6)
      ........
        r66791 | andrew.kuchling | 2008-10-04 11:52:31 -0500 (Sat, 04 Oct 2008) | 1 line
      
        Add What's New for 2.7
      ........
        r66792 | benjamin.peterson | 2008-10-04 12:10:14 -0500 (Sat, 04 Oct 2008) | 1 line
      
        silence Sphinx warning
      ........
      81f66f3c
    • Georg Brandl's avatar
      Add step to build downloadable docs. · 4cf8ac41
      Georg Brandl authored
      4cf8ac41
    • Georg Brandl's avatar
      50111c08
  18. 03 Oct, 2008 1 commit
  19. 02 Oct, 2008 7 commits