1. 26 Mar, 2009 9 commits
    • Benjamin Peterson's avatar
      Merged revisions 70518,70521,70590,70594-70595 via svnmerge from · 389aca5a
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70518 | matthias.klose | 2009-03-22 08:08:22 -0500 (Sun, 22 Mar 2009) | 2 lines
      
        - Fix comment macro in python.man
      ........
        r70521 | benjamin.peterson | 2009-03-22 12:45:11 -0500 (Sun, 22 Mar 2009) | 1 line
      
        close the file even if an exception occurs #5536
      ........
        r70590 | skip.montanaro | 2009-03-24 19:52:11 -0500 (Tue, 24 Mar 2009) | 1 line
      
        clarify the type of data returned
      ........
        r70594 | marc-andre.lemburg | 2009-03-25 14:44:58 -0500 (Wed, 25 Mar 2009) | 9 lines
      
        Remove the sys.version_info shortcut, since they cause the APIs
        to return different information than the _sys_version() output
        used in previous Python versions.
      
        This also fixes issue5561: platform.python_version_tuple returns tuple of ints, should be strings
      
        Added more tests for the various platform functions.
      ........
        r70595 | marc-andre.lemburg | 2009-03-25 14:45:33 -0500 (Wed, 25 Mar 2009) | 3 lines
      
        News item for the platform.py fix (r70594).
      ........
      389aca5a
    • Jeremy Hylton's avatar
      Add __enter__ and __exit__ methods to addbase() so that it supports with. · 82bff585
      Jeremy Hylton authored
      This change also adds a minimal unittest of urllib.response.addbase.
      More are needed, but not to cover the small change being made here.
      
      Addresses http://bugs.python.org/issue5418
      82bff585
    • Benjamin Peterson's avatar
      Blocked revisions 70531,70533,70538,70544,70552-70553,70564,70601 via svnmerge · 84c65def
      Benjamin Peterson authored
      ........
        r70531 | benjamin.peterson | 2009-03-22 17:24:58 -0500 (Sun, 22 Mar 2009) | 1 line
      
        AttributeError can be thrown during recursion errors
      ........
        r70533 | raymond.hettinger | 2009-03-22 19:08:09 -0500 (Sun, 22 Mar 2009) | 6 lines
      
        Add more comments.  Improve variable names.
        Make links clearer by using a Link object
        instead of a list.  Use proxy links to avoid
        circular references.
      ........
        r70538 | raymond.hettinger | 2009-03-22 23:42:18 -0500 (Sun, 22 Mar 2009) | 1 line
      
        Move initialization of root link to __init__.
      ........
        r70544 | raymond.hettinger | 2009-03-23 13:26:59 -0500 (Mon, 23 Mar 2009) | 1 line
      
        Make imported name private and wrap long-line.
      ........
        r70552 | benjamin.peterson | 2009-03-23 15:47:59 -0500 (Mon, 23 Mar 2009) | 1 line
      
        fix very old names for exception terms #5543
      ........
        r70553 | benjamin.peterson | 2009-03-23 16:23:30 -0500 (Mon, 23 Mar 2009) | 1 line
      
        revert r70552; wrong fix
      ........
        r70564 | raymond.hettinger | 2009-03-23 19:17:11 -0500 (Mon, 23 Mar 2009) | 1 line
      
        Add links to related resources.
      ........
        r70601 | raymond.hettinger | 2009-03-25 17:41:32 -0500 (Wed, 25 Mar 2009) | 1 line
      
        Separate initialization from clearing.
      ........
      84c65def
    • Benjamin Peterson's avatar
      4fc23ff8
    • Benjamin Peterson's avatar
      officially deprecated max_buffer_size · aecda5b9
      Benjamin Peterson authored
      aecda5b9
    • Jeremy Hylton's avatar
      Add a few more tests for urllib.parse.urlencode. · 35093f52
      Jeremy Hylton authored
      Fix some long lines.
      35093f52
    • Jeremy Hylton's avatar
      urlencode: · fc353fcd
      Jeremy Hylton authored
      Remove dead code branch created by automated conversion from 2.x.
      Clean up a few comments.
      fc353fcd
    • Jeremy Hylton's avatar
      Simplify a few complicated expressions. · 4e8907fd
      Jeremy Hylton authored
      4e8907fd
    • Jeremy Hylton's avatar
      Whitespace normalization. · 2c64486c
      Jeremy Hylton authored
      2c64486c
  2. 25 Mar, 2009 4 commits
  3. 24 Mar, 2009 10 commits
  4. 23 Mar, 2009 11 commits
  5. 22 Mar, 2009 3 commits
  6. 21 Mar, 2009 3 commits
    • Benjamin Peterson's avatar
      Blocked revisions 70463 via svnmerge · 92b0fd72
      Benjamin Peterson authored
      ........
        r70463 | benjamin.peterson | 2009-03-18 15:52:15 -0500 (Wed, 18 Mar 2009) | 1 line
      
        fix strange errors when setting attributes on tracebacks #4034
      ........
      92b0fd72
    • Benjamin Peterson's avatar
      port the queue change r70405 · 87b779b7
      Benjamin Peterson authored
      87b779b7
    • Benjamin Peterson's avatar
      Merged revisions... · c0279506
      Benjamin Peterson authored
      Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70342 | georg.brandl | 2009-03-13 14:03:58 -0500 (Fri, 13 Mar 2009) | 1 line
      
        #5486: typos.
      ........
        r70385 | benjamin.peterson | 2009-03-15 09:38:55 -0500 (Sun, 15 Mar 2009) | 1 line
      
        fix tuple.index() error message #5495
      ........
        r70386 | georg.brandl | 2009-03-15 16:32:06 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5496: fix docstring of lookup().
      ........
        r70387 | georg.brandl | 2009-03-15 16:37:16 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5493: clarify __nonzero__ docs.
      ........
        r70389 | georg.brandl | 2009-03-15 16:43:38 -0500 (Sun, 15 Mar 2009) | 1 line
      
        Fix a small nit in the error message if bool() falls back on __len__ and it returns the wrong type: it would tell the user that __nonzero__ should return bool or int.
      ........
        r70390 | georg.brandl | 2009-03-15 16:44:43 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5491: clarify nested() semantics.
      ........
        r70392 | georg.brandl | 2009-03-15 16:46:00 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5488: add missing struct member.
      ........
        r70393 | georg.brandl | 2009-03-15 16:47:42 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5478: fix copy-paste oversight in function signature.
      ........
        r70395 | georg.brandl | 2009-03-15 16:51:48 -0500 (Sun, 15 Mar 2009) | 1 line
      
        #5276: document IDLESTARTUP and .Idle.py.
      ........
        r70400 | georg.brandl | 2009-03-15 16:59:37 -0500 (Sun, 15 Mar 2009) | 3 lines
      
        Fix markup in re docs and give a mail address in regex howto, so that
        the recommendation to send suggestions to the author can be followed.
      ........
        r70405 | georg.brandl | 2009-03-15 17:11:07 -0500 (Sun, 15 Mar 2009) | 7 lines
      
        Move the previously local import of threading to module level.
      
        This is cleaner and avoids lockups in obscure cases where a Queue
        is instantiated while the import lock is already held by another thread.
      
        OKed by Tim Peters.
      ........
        r70406 | hirokazu.yamamoto | 2009-03-15 17:43:14 -0500 (Sun, 15 Mar 2009) | 1 line
      
        Added skip for old MSVC.
      ........
        r70418 | georg.brandl | 2009-03-16 14:42:03 -0500 (Mon, 16 Mar 2009) | 1 line
      
        Add token markup.
      ........
        r70438 | benjamin.peterson | 2009-03-17 15:29:51 -0500 (Tue, 17 Mar 2009) | 1 line
      
        I thought this was begging for an example
      ........
        r70464 | benjamin.peterson | 2009-03-18 15:58:09 -0500 (Wed, 18 Mar 2009) | 1 line
      
        a much better example
      ........
        r70468 | benjamin.peterson | 2009-03-18 22:04:31 -0500 (Wed, 18 Mar 2009) | 1 line
      
        close files after comparing them
      ........
      c0279506