1. 14 Dec, 2008 1 commit
  2. 25 Oct, 2008 1 commit
    • 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
  3. 16 May, 2008 2 commits
    • Alexandre Vassalotti's avatar
      Rename the repr module to reprlib. · 1f2ba4b6
      Alexandre Vassalotti authored
      Merged revisions 63357 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63357 | alexandre.vassalotti | 2008-05-16 02:58:49 -0400 (Fri, 16 May 2008) | 2 lines
      
        Changed references to the reprlib module to use its new name.
      ........
      1f2ba4b6
    • Alexandre Vassalotti's avatar
      Merged revisions... · 5f8ced2b
      Alexandre Vassalotti authored
      Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62998 | andrew.kuchling | 2008-05-10 15:51:55 -0400 (Sat, 10 May 2008) | 7 lines
      
        #1858 from Tarek Ziade:
        Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI
        for discussion.
      
        The patch is slightly revised from Tarek's last patch: I've simplified
        the PyPIRCCommand.finalize_options() method to not look at sys.argv.
        Tests still pass.
      ........
        r63000 | alexandre.vassalotti | 2008-05-10 15:59:16 -0400 (Sat, 10 May 2008) | 5 lines
      
        Cleaned up io._BytesIO.write().
      
        I am amazed that the old code, for inserting null-bytes, actually
        worked. Who wrote that thing? Oh, it is me... doh.
      ........
        r63002 | brett.cannon | 2008-05-10 16:52:01 -0400 (Sat, 10 May 2008) | 2 lines
      
        Revert r62998 as it broke the build (seems distutils.config is missing).
      ........
        r63014 | andrew.kuchling | 2008-05-10 18:12:38 -0400 (Sat, 10 May 2008) | 1 line
      
        #1858: add distutils.config module
      ........
        r63027 | brett.cannon | 2008-05-10 21:09:32 -0400 (Sat, 10 May 2008) | 2 lines
      
        Flesh out the 3.0 deprecation to suggest using the ctypes module.
      ........
        r63028 | skip.montanaro | 2008-05-10 22:59:30 -0400 (Sat, 10 May 2008) | 4 lines
      
        Copied two versions of the example from the interactive session.  Delete
        one.
      ........
        r63037 | georg.brandl | 2008-05-11 03:02:17 -0400 (Sun, 11 May 2008) | 2 lines
      
        reload() takes the module itself.
      ........
        r63038 | alexandre.vassalotti | 2008-05-11 03:06:04 -0400 (Sun, 11 May 2008) | 4 lines
      
        Added test framework for handling module renames.
        Factored the import guard in test_py3kwarn.TestStdlibRemovals into
        a context manager, namely test_support.CleanImport.
      ........
        r63039 | georg.brandl | 2008-05-11 03:06:05 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2742: ``''`` is not converted to NULL in getaddrinfo.
      ........
        r63040 | alexandre.vassalotti | 2008-05-11 03:08:12 -0400 (Sun, 11 May 2008) | 2 lines
      
        Fixed typo in a comment of test_support.CleanImport.
      ........
        r63041 | alexandre.vassalotti | 2008-05-11 03:10:25 -0400 (Sun, 11 May 2008) | 2 lines
      
        Removed a dead line of code.
      ........
        r63043 | georg.brandl | 2008-05-11 04:47:53 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2812: document property.getter/setter/deleter.
      ........
        r63049 | georg.brandl | 2008-05-11 05:06:30 -0400 (Sun, 11 May 2008) | 2 lines
      
        #1153769: document PEP 237 changes to string formatting.
      ........
        r63050 | georg.brandl | 2008-05-11 05:11:40 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2809: elaborate str.split docstring a bit.
      ........
        r63051 | georg.brandl | 2008-05-11 06:13:59 -0400 (Sun, 11 May 2008) | 2 lines
      
        Fix typo.
      ........
        r63052 | georg.brandl | 2008-05-11 06:33:27 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2709: clarification.
      ........
        r63053 | georg.brandl | 2008-05-11 06:42:28 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2659: add ``break_on_hyphens`` to TextWrapper.
      ........
        r63057 | georg.brandl | 2008-05-11 06:59:39 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2741: clarification of value range for address_family.
      ........
        r63058 | georg.brandl | 2008-05-11 07:09:35 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2452: timeout is used for all blocking operations.
      ........
        r63059 | andrew.kuchling | 2008-05-11 09:33:56 -0400 (Sun, 11 May 2008) | 2 lines
      
        #1792: Improve performance of marshal.dumps() on large objects by increasing
        the size of the buffer more quickly.
      ........
        r63060 | andrew.kuchling | 2008-05-11 10:00:00 -0400 (Sun, 11 May 2008) | 1 line
      
        #1858: re-apply patch for this, adding the missing files
      ........
        r63061 | benjamin.peterson | 2008-05-11 10:13:25 -0400 (Sun, 11 May 2008) | 2 lines
      
        Add the "until" command to pdb
      ........
        r63062 | georg.brandl | 2008-05-11 10:17:13 -0400 (Sun, 11 May 2008) | 2 lines
      
        Add some sentence endings.
      ........
      5f8ced2b
  4. 30 Mar, 2008 1 commit
  5. 30 Aug, 2007 1 commit
  6. 15 May, 2007 1 commit
    • Guido van Rossum's avatar
      Merged revisions 55328-55341 via svnmerge from · 1bc535dc
      Guido van Rossum authored
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ........
        r55329 | brett.cannon | 2007-05-14 16:36:56 -0700 (Mon, 14 May 2007) | 3 lines
      
        Implement the removal of tuple parameter unpacking (PEP 3113).
        Thanks, Tony Lownds for the patch.
      ........
        r55331 | neal.norwitz | 2007-05-14 16:40:30 -0700 (Mon, 14 May 2007) | 1 line
      
        Update to use Python 3.0
      ........
        r55332 | brett.cannon | 2007-05-14 16:47:18 -0700 (Mon, 14 May 2007) | 2 lines
      
        Mention PEP 3113.  And thanks to Tony Lownds for the PEP 3113 patch.
      ........
        r55333 | neal.norwitz | 2007-05-14 16:57:06 -0700 (Mon, 14 May 2007) | 1 line
      
        Fix exception printing (no more exceptions module)
      ........
        r55334 | neal.norwitz | 2007-05-14 17:11:10 -0700 (Mon, 14 May 2007) | 1 line
      
        Remove popen* functions from os
      ........
        r55335 | neal.norwitz | 2007-05-14 18:03:38 -0700 (Mon, 14 May 2007) | 1 line
      
        Get rid of most of popen.  There are still some uses I need to cleanup.
      ........
        r55336 | neal.norwitz | 2007-05-14 21:11:34 -0700 (Mon, 14 May 2007) | 1 line
      
        Remove a few more remnants of the compiler package
      ........
        r55337 | neal.norwitz | 2007-05-14 22:28:27 -0700 (Mon, 14 May 2007) | 1 line
      
        Get test_[cx]pickle working on 64-bit platforms (avoid overflow int/long)
      ........
      1bc535dc
  7. 09 Feb, 2007 1 commit
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum authored
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  8. 06 Sep, 2006 1 commit
  9. 18 Aug, 2006 1 commit
  10. 27 May, 2006 1 commit
    • Thomas Wouters's avatar
      Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. · 477c8d5e
      Thomas Wouters authored
      Inherits test_gzip/test_tarfile failures on 64-bit platforms from the trunk,
      but I don't want the merge to hang around too long (even though the regular
      p3yk-contributors are/have been busy with other things.)
      
      Merged revisions 45621-46490 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r45621 | george.yoshida | 2006-04-21 18:34:17 +0200 (Fri, 21 Apr 2006) | 2 lines
      
        Correct the grammar
      ........
        r45622 | tim.peters | 2006-04-21 18:34:54 +0200 (Fri, 21 Apr 2006) | 2 lines
      
        Whitespace normalization.
      ........
        r45624 | thomas.heller | 2006-04-21 18:48:56 +0200 (Fri, 21 Apr 2006) | 1 line
      
        Merge in changes from ctypes 0.9.9.6 upstream version.
      ........
        r45625 | thomas.heller | 2006-04-21 18:51:04 +0200 (Fri, 21 Apr 2006) | 1 line
      
        Merge in changes from ctypes 0.9.9.6 upstream version.
      ........
        r45630 | thomas.heller | 2006-04-21 20:29:17 +0200 (Fri, 21 Apr 2006) | 8 lines
      
        Documentation fo...
      477c8d5e
  11. 21 Apr, 2006 1 commit
  12. 07 Nov, 2004 1 commit
  13. 24 Oct, 2004 1 commit
  14. 30 Aug, 2004 1 commit
    • Johannes Gijsbers's avatar
      Patch #1003640: replace checkline() function parsing with new breakpoint logic: · 4a9faa1e
      Johannes Gijsbers authored
      1) When a breakpoint is set via a function name:
      - the breakpoint gets the lineno of the def statement
      - a new funcname attribute is attached to the breakpoint
      
      2) bdb.effective() calls new function checkfuncname() to handle:
      - def statement is executed: don't break.
      - a first executable line of a function with a breakpoint on the lineno of the
      def statement is reached: break.
      
      This fixes bugs 976878, 926369 and 875404. Thanks Ilya Sandler.
      4a9faa1e
  15. 24 Mar, 2004 1 commit
  16. 12 Feb, 2004 1 commit
  17. 27 Feb, 2003 1 commit
  18. 01 Jun, 2002 1 commit
  19. 29 May, 2002 1 commit
  20. 28 May, 2002 1 commit
    • Christian Tismer's avatar
      This is a Python 2.1 and 2.2 bugfix candidate: · 313a7513
      Christian Tismer authored
      (or how do I "mark" something to be a candidate?)
      
      fixed an old buglet that caused bdb to be unable to
      continue in the botframe, after a breakpoint was set.
      the key idea is not to set botframe to the bottom level frame,
      but its f_back, which actually might be None.
      Additional changes: migrated old exception trick to use
      sys._getframe(), which exists both in 2.1 and 2.2 .
      
      Note: I believe Mark Hammond needs to look over his code now.
      F5 correctly starts up in the debugger, but later on doesn't stop at a given
      breakpoint any longer.
      
      kind regards - chris
      313a7513
  21. 04 Apr, 2002 1 commit
  22. 31 Mar, 2002 2 commits
  23. 25 Feb, 2002 1 commit
  24. 11 Feb, 2002 1 commit
  25. 29 Nov, 2001 1 commit
  26. 25 Jun, 2001 1 commit
  27. 08 Apr, 2001 1 commit
  28. 09 Feb, 2001 1 commit
  29. 20 Jan, 2001 1 commit
    • Skip Montanaro's avatar
      added __all__ lists to a number of Python modules · e99d5ea2
      Skip Montanaro authored
      added test script and expected output file as well
      this closes patch 103297.
      __all__ attributes will be added to other modules without first submitting
      a patch, just adding the necessary line to the test script to verify
      more-or-less correct implementation.
      e99d5ea2
  30. 14 Jan, 2001 1 commit
  31. 02 Feb, 2000 1 commit
    • Guido van Rossum's avatar
      Mass patch by Ka-Ping Yee: · 4acc25bd
      Guido van Rossum authored
          1. Comments at the beginning of the module, before
             functions, and before classes have been turned
             into docstrings.
      
          2. Tabs are normalized to four spaces.
      
      Also, removed the "remove" function from dircmp.py, which reimplements
      list.remove() (it must have been very old).
      4acc25bd
  32. 19 Jan, 2000 1 commit
  33. 09 Sep, 1999 1 commit
  34. 29 Jan, 1999 2 commits
  35. 25 Jan, 1999 2 commits
  36. 18 Nov, 1998 1 commit