1. 05 Nov, 2008 5 commits
  2. 04 Nov, 2008 4 commits
  3. 03 Nov, 2008 2 commits
    • Benjamin Peterson's avatar
      fix test_descr · c1de4cca
      Benjamin Peterson authored
      c1de4cca
    • Benjamin Peterson's avatar
      Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from · c0747cf5
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r67028 | benjamin.peterson | 2008-10-25 18:27:07 -0500 (Sat, 25 Oct 2008) | 1 line
      
        don't use a catch-all
      ........
        r67040 | armin.rigo | 2008-10-28 12:01:21 -0500 (Tue, 28 Oct 2008) | 5 lines
      
        Fix one of the tests: it relied on being present in an "output test" in
        order to actually test what it was supposed to test, i.e. that the code
        in the __del__ method did not crash.  Use instead the new helper
        test_support.captured_output().
      ........
        r67044 | amaury.forgeotdarc | 2008-10-29 18:15:57 -0500 (Wed, 29 Oct 2008) | 3 lines
      
        Correct error message in io.open():
        closefd=True is the only accepted value with a file name.
      ........
        r67046 | thomas.heller | 2008-10-30 15:18:13 -0500 (Thu, 30 Oct 2008) | 2 lines
      
        Fixed a modulefinder crash on certain relative imports.
      ........
        r67052 | christian.heimes | 2008-10-30 16:26:15 -0500 (Thu, 30 Oct 2008) | 1 line
      
        Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members.
      ........
        r67065 | benjamin.peterson | 2008-10-30 18:59:18 -0500 (Thu, 30 Oct 2008) | 1 line
      
        move unprefixed error into .c file
      ........
        r67070 | benjamin.peterson | 2008-10-31 15:41:44 -0500 (Fri, 31 Oct 2008) | 1 line
      
        rephrase has_key doc
      ........
        r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line
      
        #4048 make the parser module accept relative imports as valid
      ........
        r67082 | hirokazu.yamamoto | 2008-11-03 12:03:06 -0600 (Mon, 03 Nov 2008) | 2 lines
      
        Issue #3774: Fixed an error when create a Tkinter menu item without command
        and then remove it. Written by Guilherme Polo (gpolo).
      ........
      c0747cf5
  4. 31 Oct, 2008 2 commits
  5. 30 Oct, 2008 9 commits
  6. 29 Oct, 2008 3 commits
  7. 26 Oct, 2008 1 commit
  8. 25 Oct, 2008 5 commits
    • Benjamin Peterson's avatar
      default source encoding is now utf-8 · cff882ce
      Benjamin Peterson authored
      cff882ce
    • Alexandre Vassalotti's avatar
      Remove a confusing statement in Pickler's docstring. · e8022b4b
      Alexandre Vassalotti authored
      Pickler does not read anything from the given file.
      e8022b4b
    • Alexandre Vassalotti's avatar
      Fix a grammar mistake in a comment. · 45a583b6
      Alexandre Vassalotti authored
      45a583b6
    • Benjamin Peterson's avatar
      Merged revisions... · 1a6e0d08
      Benjamin Peterson authored
      Merged revisions 66974,66977,66984,66989,66992,66994-66996,66998-67000,67007,67015 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r66974 | benjamin.peterson | 2008-10-19 08:59:01 -0500 (Sun, 19 Oct 2008) | 1 line
      
        fix compiler warning
      ........
        r66977 | benjamin.peterson | 2008-10-19 14:39:16 -0500 (Sun, 19 Oct 2008) | 1 line
      
        mention -n
      ........
        r66984 | armin.ronacher | 2008-10-20 16:29:08 -0500 (Mon, 20 Oct 2008) | 3 lines
      
        Fixed #4062, added import for _ast.__version__ to ast to match the documented behavior.
      ........
        r66989 | matthias.klose | 2008-10-21 04:12:25 -0500 (Tue, 21 Oct 2008) | 2 lines
      
        - install versioned manpage
      ........
        r66992 | benjamin.peterson | 2008-10-21 15:51:13 -0500 (Tue, 21 Oct 2008) | 1 line
      
        make sure to call iteritems()
      ........
        r66994 | amaury.forgeotdarc | 2008-10-21 17:01:38 -0500 (Tue, 21 Oct 2008) | 6 lines
      
        #4157 move two test functions out of platform.py.
      
        Turn them into unit tests, and correct an obvious typo:
            (("a", "b") ("c", "d") ("e", "f"))
        compiles even with the missing commas, but does not execute very well...
      ........
        r66995 | benjamin.peterson | 2008-10-21 17:18:29 -0500 (Tue, 21 Oct 2008) | 1 line
      
        return ArgInfo from inspect.getargvalues #4092
      ........
        r66996 | benjamin.peterson | 2008-10-21 17:20:31 -0500 (Tue, 21 Oct 2008) | 1 line
      
        add NEWs note for last change
      ........
        r66998 | benjamin.peterson | 2008-10-22 15:57:43 -0500 (Wed, 22 Oct 2008) | 1 line
      
        fix a few typos
      ........
        r66999 | benjamin.peterson | 2008-10-22 16:05:30 -0500 (Wed, 22 Oct 2008) | 1 line
      
        and another typo...
      ........
        r67000 | benjamin.peterson | 2008-10-22 16:16:34 -0500 (Wed, 22 Oct 2008) | 1 line
      
        fix #4150: pdb's up command didn't work for generators in post-mortem
      ........
        r67007 | benjamin.peterson | 2008-10-23 16:43:48 -0500 (Thu, 23 Oct 2008) | 1 line
      
        only nonempty __slots__ don't work
      ........
        r67015 | georg.brandl | 2008-10-25 02:00:52 -0500 (Sat, 25 Oct 2008) | 2 lines
      
        Typo fix.
      ........
      1a6e0d08
    • Benjamin Peterson's avatar
      Blocked revisions 67013 via svnmerge · cbda96ec
      Benjamin Peterson authored
      ........
        r67013 | benjamin.peterson | 2008-10-24 21:53:28 -0500 (Fri, 24 Oct 2008) | 1 line
      
        give a py3k warning when 'nonlocal' is used as a variable name
      ........
      cbda96ec
  9. 24 Oct, 2008 4 commits
  10. 23 Oct, 2008 3 commits
  11. 21 Oct, 2008 1 commit
  12. 20 Oct, 2008 1 commit