1. 12 Apr, 2009 9 commits
  2. 11 Apr, 2009 13 commits
    • Georg Brandl's avatar
      Merged revisions 71024,71058 via svnmerge from · 406b3d89
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71024 | georg.brandl | 2009-04-02 04:47:44 +0200 (Do, 02 Apr 2009) | 4 lines
      
        In PyErr_GivenExceptionMatches, temporarily bump the recursion
        limit, so that in the most common case PyObject_IsSubclass will
        not raise a recursion error we have to ignore anyway.
      ........
        r71058 | georg.brandl | 2009-04-02 20:09:04 +0200 (Do, 02 Apr 2009) | 3 lines
      
        PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject
        call on hitting the recursion limit into just assigning it to the arguments provided.
      ........
      406b3d89
    • Benjamin Peterson's avatar
      Merged revisions 71498 via svnmerge from · 3f96a879
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71498 | benjamin.peterson | 2009-04-11 15:27:15 -0500 (Sat, 11 Apr 2009) | 1 line
      
        fix markup
      ........
      3f96a879
    • Benjamin Peterson's avatar
      Merged revisions... · f47ed4a0
      Benjamin Peterson authored
      Merged revisions 70912,70944,70968,71033,71041,71208,71263,71286,71395-71396,71405-71406,71485,71492,71494 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70912 | georg.brandl | 2009-03-31 17:35:46 -0500 (Tue, 31 Mar 2009) | 1 line
      
        #5617: add a handy function to print a unicode string to gdbinit.
      ........
        r70944 | georg.brandl | 2009-03-31 23:32:39 -0500 (Tue, 31 Mar 2009) | 1 line
      
        #5631: add upload to list of possible commands, which is presented in --help-commands.
      ........
        r70968 | michael.foord | 2009-04-01 13:25:38 -0500 (Wed, 01 Apr 2009) | 1 line
      
        Adding Wing project file
      ........
        r71033 | brett.cannon | 2009-04-01 22:34:53 -0500 (Wed, 01 Apr 2009) | 3 lines
      
        Fix two issues introduced by issue #71031 by changing the signature of
        PyImport_AppendInittab() to take a const char *.
      ........
        r71041 | jesse.noller | 2009-04-02 00:17:26 -0500 (Thu, 02 Apr 2009) | 1 line
      
        Add custom initializer argument to multiprocess.Manager*, courtesy of lekma
      ........
        r71208 | michael.foord | 2009-04-04 20:15:01 -0500 (Sat, 04 Apr 2009) | 4 lines
      
        Change the way unittest.TestSuite use their tests to always access them through iteration. Non behavior changing, this allows you to create custom subclasses that override __iter__.
      
        Issue #5693
      ........
        r71263 | michael.foord | 2009-04-05 14:19:28 -0500 (Sun, 05 Apr 2009) | 4 lines
      
        Adding assertIs and assertIsNot methods to unittest.TestCase
      
        Issue #2578
      ........
        r71286 | tarek.ziade | 2009-04-05 17:04:38 -0500 (Sun, 05 Apr 2009) | 1 line
      
        added a simplest test to distutils.spawn._nt_quote_args
      ........
        r71395 | benjamin.peterson | 2009-04-08 08:27:29 -0500 (Wed, 08 Apr 2009) | 1 line
      
        these must be installed to correctly run tests
      ........
        r71396 | benjamin.peterson | 2009-04-08 08:29:41 -0500 (Wed, 08 Apr 2009) | 1 line
      
        fix syntax
      ........
        r71405 | andrew.kuchling | 2009-04-09 06:22:47 -0500 (Thu, 09 Apr 2009) | 1 line
      
        Add items
      ........
        r71406 | andrew.kuchling | 2009-04-09 06:23:36 -0500 (Thu, 09 Apr 2009) | 1 line
      
        Typo fixes
      ........
        r71485 | andrew.kuchling | 2009-04-11 11:12:23 -0500 (Sat, 11 Apr 2009) | 1 line
      
        Add various items
      ........
        r71492 | georg.brandl | 2009-04-11 13:19:27 -0500 (Sat, 11 Apr 2009) | 1 line
      
        Take credit for a patch of mine.
      ........
        r71494 | benjamin.peterson | 2009-04-11 14:31:00 -0500 (Sat, 11 Apr 2009) | 1 line
      
        ignore py3_test_grammar when compiling the library
      ........
      f47ed4a0
    • Benjamin Peterson's avatar
      Blocked revisions 70757,70981,71029,71031,71082 via svnmerge · a0a7faab
      Benjamin Peterson authored
      ........
        r70757 | senthil.kumaran | 2009-03-30 16:51:50 -0500 (Mon, 30 Mar 2009) | 3 lines
      
        Fix for bugs: Issue4675 and Issue4962.
      ........
        r70981 | senthil.kumaran | 2009-04-01 15:26:33 -0500 (Wed, 01 Apr 2009) | 3 lines
      
        Fix for issue5040. Adding test for Content-Length
      ........
        r71029 | senthil.kumaran | 2009-04-01 22:00:34 -0500 (Wed, 01 Apr 2009) | 3 lines
      
        Fixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel.
      ........
        r71031 | brett.cannon | 2009-04-01 22:17:39 -0500 (Wed, 01 Apr 2009) | 6 lines
      
        PyImport_AppendInittab() took a char * as a first argument even though that
        string was stored beyond the life of the call. Changed the signature to be
        const char * to help make this point.
      
        Closes issue #1419652.
      ........
        r71082 | hirokazu.yamamoto | 2009-04-02 22:54:08 -0500 (Thu, 02 Apr 2009) | 1 line
      
        Fixed compile error on windows.
      ........
      a0a7faab
    • Benjamin Peterson's avatar
      Merged revisions 71303 via svnmerge from · ad71f0f0
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71303 | gregory.p.smith | 2009-04-06 01:33:26 -0500 (Mon, 06 Apr 2009) | 3 lines
      
        - Issue #2254: Fix CGIHTTPServer information disclosure.  Relative paths are
          now collapsed within the url properly before looking in cgi_directories.
      ........
      ad71f0f0
    • Benjamin Peterson's avatar
      Merged revisions... · ef3e4c2b
      Benjamin Peterson authored
      Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70980 | jack.diederich | 2009-04-01 15:26:13 -0500 (Wed, 01 Apr 2009) | 3 lines
      
        bounds check arguments to mmap.move().  All of them.  Really.
        fixes crasher on OS X 10.5
      ........
        r71059 | mark.dickinson | 2009-04-02 13:39:37 -0500 (Thu, 02 Apr 2009) | 2 lines
      
        sys.long_info attributes should be ints, not longs
      ........
        r71225 | georg.brandl | 2009-04-05 06:54:07 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #5580: no need to use parentheses when converterr() argument is actually a type description.
      ........
        r71234 | georg.brandl | 2009-04-05 08:16:35 -0500 (Sun, 05 Apr 2009) | 1 line
      
        Whitespace normalization.
      ........
        r71241 | georg.brandl | 2009-04-05 09:48:49 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #5471: fix expanduser() for $HOME set to "/".
      ........
        r71243 | georg.brandl | 2009-04-05 10:14:29 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #5432: make plistlib docstring a raw string, since it contains examples with backslash escapes.
      ........
        r71249 | georg.brandl | 2009-04-05 11:30:43 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #5444: adapt make.bat to new htmlhelp output file name.
      ........
        r71251 | georg.brandl | 2009-04-05 12:17:42 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #5298: clarify docs about GIL by using more consistent wording.
      ........
        r71255 | georg.brandl | 2009-04-05 13:34:58 -0500 (Sun, 05 Apr 2009) | 1 line
      
        #602893: add indicator for current line in cgitb that doesnt rely on styling alone.
      ........
        r71266 | georg.brandl | 2009-04-05 15:23:13 -0500 (Sun, 05 Apr 2009) | 1 line
      
        Normalize issue referencing style.
      ........
        r71299 | gregory.p.smith | 2009-04-05 18:43:58 -0500 (Sun, 05 Apr 2009) | 3 lines
      
        Fixes issue5705: os.setuid() and friends did not accept the same range of
        values that pwd.getpwnam() returns.
      ........
        r71329 | benjamin.peterson | 2009-04-06 16:53:33 -0500 (Mon, 06 Apr 2009) | 1 line
      
        add create_connection to __all__ #5711
      ........
        r71397 | georg.brandl | 2009-04-08 11:36:39 -0500 (Wed, 08 Apr 2009) | 1 line
      
        Remove redundant backtick.
      ........
        r71398 | georg.brandl | 2009-04-08 11:39:04 -0500 (Wed, 08 Apr 2009) | 1 line
      
        Update ignore file for suspicious builder.
      ........
        r71486 | andrew.kuchling | 2009-04-11 11:18:14 -0500 (Sat, 11 Apr 2009) | 1 line
      
        Re-word
      ........
      ef3e4c2b
    • Benjamin Peterson's avatar
      Blocked revisions... · da2ba336
      Benjamin Peterson authored
      Blocked revisions 70807,70986,70993-70994,71127,71300,71302,71361,71365,71367,71370,71377,71380,71385,71389,71392,71419,71430,71435,71448,71462,71490 via svnmerge
      
      ........
        r70807 | jeremy.hylton | 2009-03-31 08:31:00 -0500 (Tue, 31 Mar 2009) | 2 lines
      
        Update quicktest to match Python 3 branch
      ........
        r70986 | raymond.hettinger | 2009-04-01 15:50:58 -0500 (Wed, 01 Apr 2009) | 1 line
      
        Add link to an alternative generator with a long-period.
      ........
        r70993 | georg.brandl | 2009-04-01 16:05:44 -0500 (Wed, 01 Apr 2009) | 1 line
      
        Add NEWS item.
      ........
        r70994 | georg.brandl | 2009-04-01 16:06:30 -0500 (Wed, 01 Apr 2009) | 1 line
      
        Revert accidental checkin.
      ........
        r71127 | raymond.hettinger | 2009-04-04 03:46:58 -0500 (Sat, 04 Apr 2009) | 1 line
      
        Replace the localized min/max calls with normal if/else
      ........
        r71300 | gregory.p.smith | 2009-04-05 18:48:26 -0500 (Sun, 05 Apr 2009) | 2 lines
      
        news entry for r71299.
      ........
        r71302 | jack.diederich | 2009-04-05 21:08:44 -0500 (Sun, 05 Apr 2009) | 1 line
      
        test the telnetlib.Telnet interface more thoroughly
      ........
        r71361 | benjamin.peterson | 2009-04-07 10:15:04 -0500 (Tue, 07 Apr 2009) | 1 line
      
        fix syntax tests after formatting change
      ........
        r71365 | benjamin.peterson | 2009-04-07 10:52:05 -0500 (Tue, 07 Apr 2009) | 1 line
      
        fix since difference formating of SyntaxErrors
      ........
        r71367 | benjamin.peterson | 2009-04-07 11:03:04 -0500 (Tue, 07 Apr 2009) | 1 line
      
        revert unrelated change to test_telnetlib
      ........
        r71370 | vinay.sajip | 2009-04-07 12:18:24 -0500 (Tue, 07 Apr 2009) | 1 line
      
        Issue #5695: Minor tweak to improve the code as suggested by Brett Cannon and as implemented in the Py3K branch.
      ........
        r71377 | jack.diederich | 2009-04-07 15:22:59 -0500 (Tue, 07 Apr 2009) | 1 line
      
        eliminate more race conditions in telnetlib tests
      ........
        r71380 | raymond.hettinger | 2009-04-07 16:43:51 -0500 (Tue, 07 Apr 2009) | 1 line
      
        Fix make.bat to match makefile changes
      ........
        r71385 | jack.diederich | 2009-04-07 18:56:57 -0500 (Tue, 07 Apr 2009) | 4 lines
      
        - Make timing assertions very generous (a la test_timeout.py)
        - Break the gc cycle in negotiation tests
        - test the different guarantees of read_lazy and read_very_lazy
      ........
        r71389 | raymond.hettinger | 2009-04-08 00:39:38 -0500 (Wed, 08 Apr 2009) | 1 line
      
        Add docstrings.
      ........
        r71392 | raymond.hettinger | 2009-04-08 03:26:55 -0500 (Wed, 08 Apr 2009) | 1 line
      
        Minor factoring.
      ........
        r71419 | raymond.hettinger | 2009-04-09 17:31:51 -0500 (Thu, 09 Apr 2009) | 1 line
      
        Add note on using keyword arguments with OrderedDict.
      ........
        r71430 | raymond.hettinger | 2009-04-09 23:25:45 -0500 (Thu, 09 Apr 2009) | 1 line
      
        Clarify the table entries for combinatorics.
      ........
        r71435 | raymond.hettinger | 2009-04-10 01:38:39 -0500 (Fri, 10 Apr 2009) | 1 line
      
        Fix the count of datatypes.
      ........
        r71448 | raymond.hettinger | 2009-04-10 08:16:50 -0500 (Fri, 10 Apr 2009) | 1 line
      
        Add examples.
      ........
        r71462 | chris.withers | 2009-04-11 06:22:19 -0500 (Sat, 11 Apr 2009) | 2 lines
      
        remove unpleasant exec
      ........
        r71490 | r.david.murray | 2009-04-11 12:52:56 -0500 (Sat, 11 Apr 2009) | 4 lines
      
        Make test_asyncore tests match code changes introduced by the
        fix to Issue1161031, refactoring the test to simplify it in
        the process.
      ........
      da2ba336
    • Georg Brandl's avatar
      Remove mentions of "long". · 639ce96b
      Georg Brandl authored
      639ce96b
    • Antoine Pitrou's avatar
      #5502: accelerate binary buffered IO (especially small operations). · 711af3ae
      Antoine Pitrou authored
      On a suggestion by Victor Stinner.
      711af3ae
    • Tarek Ziadé's avatar
      Merged revisions 71478 via svnmerge from · aa4398b6
      Tarek Ziadé authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71478 | tarek.ziade | 2009-04-11 17:14:17 +0200 (Sat, 11 Apr 2009) | 1 line
      
        testing a full check case
      ........
      aa4398b6
    • Tarek Ziadé's avatar
      Merged revisions 71473 via svnmerge from · f396ecf3
      Tarek Ziadé authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71473 | tarek.ziade | 2009-04-11 16:55:07 +0200 (Sat, 11 Apr 2009) | 1 line
      
        #5732: added the check command into Distutils
      ........
      f396ecf3
    • Tarek Ziadé's avatar
      Merged revisions 71467 via svnmerge from · 99a0c674
      Tarek Ziadé authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71467 | tarek.ziade | 2009-04-11 15:59:05 +0200 (Sat, 11 Apr 2009) | 1 line
      
        fixed link
      ........
      99a0c674
    • Nick Coghlan's avatar
      Merged revisions 71465 via svnmerge from · fce769e7
      Nick Coghlan authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71465 | nick.coghlan | 2009-04-11 23:31:31 +1000 (Sat, 11 Apr 2009) | 1 line
      
        Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks
      ........
      fce769e7
  3. 10 Apr, 2009 11 commits
  4. 09 Apr, 2009 6 commits
  5. 08 Apr, 2009 1 commit