1. 30 Kas, 2010 1 kayıt (commit)
  2. 21 Kas, 2010 1 kayıt (commit)
  3. 20 Kas, 2010 4 kayıt (commit)
  4. 04 Kas, 2010 1 kayıt (commit)
  5. 15 Eki, 2010 2 kayıt (commit)
  6. 17 Agu, 2010 1 kayıt (commit)
  7. 16 Agu, 2010 1 kayıt (commit)
  8. 09 Agu, 2010 2 kayıt (commit)
  9. 25 Haz, 2010 1 kayıt (commit)
  10. 17 Haz, 2010 1 kayıt (commit)
    • R. David Murray's avatar
      Merged revisions 82039 via svnmerge from · a1b3740d
      R. David Murray yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82039 | r.david.murray | 2010-06-16 21:36:52 -0400 (Wed, 16 Jun 2010) | 10 lines
      
        #8720: fix inspect regression by teaching getsourcefile about linecache.
      
        The fix for issue 4050 caused a regression:  before that fix, source
        lines in the linecache would eventually be found by inspect.  After the
        fix inspect reports an error earlier, and the source isn't found.
        The fix for the fix is to have getsourcefile look in the linecache for
        the file and return the psuedo-filename if the source is there, just as
        it already returns it if there is a PEP 302 loader.
      ........
      a1b3740d
  11. 17 Nis, 2010 1 kayıt (commit)
  12. 30 Mar, 2010 1 kayıt (commit)
  13. 13 Kas, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · a0dfa82e
      Benjamin Peterson yazdı
      Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75149 | gregory.p.smith | 2009-09-29 16:56:31 -0500 (Tue, 29 Sep 2009) | 3 lines
      
        Mention issue6972 in extractall docs about overwriting things outside of
        the supplied path.
      ........
        r75260 | andrew.kuchling | 2009-10-05 16:24:20 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Wording fix
      ........
        r75261 | andrew.kuchling | 2009-10-05 16:24:35 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Fix narkup
      ........
        r75262 | andrew.kuchling | 2009-10-05 16:25:03 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Document 'skip' parameter to constructor
      ........
        r75263 | andrew.kuchling | 2009-10-05 16:25:35 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Note side benefit of socket.create_connection()
      ........
        r75265 | andrew.kuchling | 2009-10-05 17:31:11 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Reword sentence
      ........
        r75266 | andrew.kuchling | 2009-10-05 17:32:48 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Use standard comma punctuation; reword some sentences in the docs
      ........
        r75267 | andrew.kuchling | 2009-10-05 17:42:56 -0500 (Mon, 05 Oct 2009) | 1 line
      
        Backport r73983: Document the thousands separator.
      ........
        r75292 | benjamin.peterson | 2009-10-08 22:11:36 -0500 (Thu, 08 Oct 2009) | 1 line
      
        death to old CVS keyword
      ........
        r75300 | benjamin.peterson | 2009-10-09 16:48:14 -0500 (Fri, 09 Oct 2009) | 1 line
      
        fix some coding style
      ........
        r75376 | benjamin.peterson | 2009-10-11 20:26:07 -0500 (Sun, 11 Oct 2009) | 1 line
      
        platform we don't care about
      ........
        r75405 | neil.schemenauer | 2009-10-14 12:17:14 -0500 (Wed, 14 Oct 2009) | 4 lines
      
        Issue #1754094: Improve the stack depth calculation in the compiler.
        There should be no other effect than a small decrease in memory use.
        Patch by Christopher Tur Lesniewski-Laas.
      ........
        r75429 | benjamin.peterson | 2009-10-14 20:47:28 -0500 (Wed, 14 Oct 2009) | 1 line
      
        pep8ify if blocks
      ........
        r75430 | benjamin.peterson | 2009-10-14 20:49:37 -0500 (Wed, 14 Oct 2009) | 1 line
      
        use floor division and add a test that exercises the tabsize codepath
      ........
        r75431 | benjamin.peterson | 2009-10-14 20:56:25 -0500 (Wed, 14 Oct 2009) | 1 line
      
        change test to what I intended
      ........
        r75432 | benjamin.peterson | 2009-10-14 22:05:39 -0500 (Wed, 14 Oct 2009) | 1 line
      
        some cleanups
      ........
        r75433 | benjamin.peterson | 2009-10-14 22:06:55 -0500 (Wed, 14 Oct 2009) | 1 line
      
        make inspect.isabstract() always return a boolean; add a test for it, too #7069
      ........
        r75437 | benjamin.peterson | 2009-10-15 10:44:46 -0500 (Thu, 15 Oct 2009) | 1 line
      
        only clear a module's __dict__ if the module is the only one with a reference to it #7140
      ........
        r75445 | vinay.sajip | 2009-10-16 09:06:44 -0500 (Fri, 16 Oct 2009) | 1 line
      
        Issue #7120: logging: Removed import of multiprocessing which is causing crash in GAE.
      ........
        r75501 | antoine.pitrou | 2009-10-18 13:37:11 -0500 (Sun, 18 Oct 2009) | 3 lines
      
        Add a comment about unreachable code, and fix a typo
      ........
        r75551 | benjamin.peterson | 2009-10-19 22:14:10 -0500 (Mon, 19 Oct 2009) | 1 line
      
        use property api
      ........
        r75572 | benjamin.peterson | 2009-10-20 16:55:17 -0500 (Tue, 20 Oct 2009) | 1 line
      
        clarify buffer arg #7178
      ........
        r75589 | benjamin.peterson | 2009-10-21 21:26:47 -0500 (Wed, 21 Oct 2009) | 1 line
      
        whitespace
      ........
        r75590 | benjamin.peterson | 2009-10-21 21:36:47 -0500 (Wed, 21 Oct 2009) | 1 line
      
        rewrite to be nice to other implementations
      ........
        r75591 | benjamin.peterson | 2009-10-21 21:50:38 -0500 (Wed, 21 Oct 2009) | 4 lines
      
        rewrite for style, clarify, and comments
      
        Also, use the hasattr() like scheme of allowing BaseException exceptions through.
      ........
        r75657 | antoine.pitrou | 2009-10-24 07:41:27 -0500 (Sat, 24 Oct 2009) | 3 lines
      
        Fix compilation error in debug mode.
      ........
        r75742 | benjamin.peterson | 2009-10-26 17:51:16 -0500 (Mon, 26 Oct 2009) | 1 line
      
        use 'is' instead of id()
      ........
        r75868 | benjamin.peterson | 2009-10-27 15:59:18 -0500 (Tue, 27 Oct 2009) | 1 line
      
        test expect base classes
      ........
        r75952 | georg.brandl | 2009-10-29 15:38:32 -0500 (Thu, 29 Oct 2009) | 1 line
      
        Use the correct function name in docstring.
      ........
        r75953 | georg.brandl | 2009-10-29 15:39:50 -0500 (Thu, 29 Oct 2009) | 1 line
      
        Remove mention of the old -X command line switch.
      ........
        r75954 | georg.brandl | 2009-10-29 15:53:00 -0500 (Thu, 29 Oct 2009) | 1 line
      
        Use constants instead of magic integers for test result.  Do not re-run with --verbose3 for environment changing tests.
      ........
        r75955 | georg.brandl | 2009-10-29 15:54:03 -0500 (Thu, 29 Oct 2009) | 1 line
      
        Use a single style for all the docstrings in the math module.
      ........
        r75956 | georg.brandl | 2009-10-29 16:16:34 -0500 (Thu, 29 Oct 2009) | 1 line
      
        I do not think the "railroad" program mentioned is still available.
      ........
        r75957 | georg.brandl | 2009-10-29 16:44:56 -0500 (Thu, 29 Oct 2009) | 1 line
      
        Fix constant name.
      ........
        r76057 | benjamin.peterson | 2009-11-02 09:06:45 -0600 (Mon, 02 Nov 2009) | 1 line
      
        prevent a rather unlikely segfault
      ........
        r76105 | georg.brandl | 2009-11-04 01:38:12 -0600 (Wed, 04 Nov 2009) | 1 line
      
        #7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs.
      ........
        r76139 | benjamin.peterson | 2009-11-06 19:04:38 -0600 (Fri, 06 Nov 2009) | 1 line
      
        spelling
      ........
        r76143 | georg.brandl | 2009-11-07 02:26:07 -0600 (Sat, 07 Nov 2009) | 1 line
      
        #7271: fix typo.
      ........
        r76162 | benjamin.peterson | 2009-11-08 22:10:53 -0600 (Sun, 08 Nov 2009) | 1 line
      
        discuss how to use -p
      ........
        r76223 | georg.brandl | 2009-11-12 02:29:46 -0600 (Thu, 12 Nov 2009) | 1 line
      
        Give the profile module a module directive.
      ........
      a0dfa82e
  14. 04 Eki, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 4ac9ce4f
      Benjamin Peterson yazdı
      Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Change to tutorial wording for reading text / binary files on Windows. Issue #6301.
      ........
        r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
      ........
        r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712.
      ........
        r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Tutorial tweaks. Issue 6849.
      ........
        r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line
      
        unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
      ........
        r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Typo fix.
      ........
        r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
      ........
        r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line
      
        Remove an extraneous space in unittest documentation.
      ........
        r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line
      
        #6908: fix association of hashlib hash attributes.
      ........
        r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line
      
        Py_SetPythonHome uses static storage #6913
      ........
        r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line
      
        Add Armin Ronacher.
      ........
        r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line
      
        kill bare except
      ........
        r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line
      
        pep 8 defaults
      ........
        r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line
      
        rationalize a bit
      ........
        r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line
      
        #6932: remove paragraph that advises relying on __del__ being called.
      ........
        r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line
      
        use macros
      ........
        r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line
      
        #6936: for interactive use, quit() is just fine.
      ........
        r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line
      
        #6905: use better exception messages in inspect when the argument is of the wrong type.
      ........
        r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line
      
        #6938: "ident" is always a string, so use a format code which works.
      ........
        r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line
      
        Use str.format() to fix beginner's mistake with %-style string formatting.
      ........
        r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line
      
        Optimize optimization and fix method name in docstring.
      ........
        r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line
      
        #6925: rewrite docs for locals() and vars() a bit.
      ........
        r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line
      
        #6930: clarify description about byteorder handling in UTF decoder routines.
      ........
        r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line
      
        #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set.  Also clean up another usage of PyArg_ParseTuple.
      ........
        r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line
      
        Update bug tracker reference.
      ........
        r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line
      
        #6946: fix duplicate index entries for datetime classes.
      ........
        r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line
      
        Fix references to threading.enumerate().
      ........
        r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line
      
        Add Doug.
      ........
        r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line
      
        Add Mark Summerfield.
      ........
        r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line
      
        Fix encoding name.
      ........
        r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line
      
        Fixed a typo, and added sections on optimization and using arbitrary objects as messages.
      ........
        r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line
      
        fix typos/rephrase
      ........
        r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line
      
        comment out ugly xxx
      ........
        r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line
      
        Tidied up name of parameter in StreamHandler
      ........
        r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line
      
        Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
      ........
        r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line
      
        Documentation improvement for load_tests protocol in unittest. Issue 6515.
      ........
        r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines
      
        Patch from Thomas Barr so that csv.Sniffer will set doublequote property.
        Closes issue 6606.
      ........
        r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line
      
        Issue #7014: logging: Improved IronPython 2.6 compatibility.
      ........
        r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines
      
        Issue 7008: Better document str.title and show how to work around the apostrophe problem.
      ........
        r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line
      
        test logging
      ........
      4ac9ce4f
  15. 02 Agu, 2009 1 kayıt (commit)
  16. 29 Tem, 2009 1 kayıt (commit)
    • Alexandre Vassalotti's avatar
      Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from · e223eb84
      Alexandre Vassalotti yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r74075 | georg.brandl | 2009-07-18 05:06:31 -0400 (Sat, 18 Jul 2009) | 1 line
      
        #6505: fix typos.
      ........
        r74187 | benjamin.peterson | 2009-07-23 10:19:08 -0400 (Thu, 23 Jul 2009) | 1 line
      
        use bools for autoraise
      ........
        r74197 | benjamin.peterson | 2009-07-24 22:03:48 -0400 (Fri, 24 Jul 2009) | 1 line
      
        clarify
      ........
        r74201 | amaury.forgeotdarc | 2009-07-25 12:22:06 -0400 (Sat, 25 Jul 2009) | 2 lines
      
        Better name a variable: 'buf' seems to imply a mutable buffer.
      ........
        r74216 | michael.foord | 2009-07-26 17:12:14 -0400 (Sun, 26 Jul 2009) | 1 line
      
        Issue 6581. Michael Foord
      ........
        r74225 | kurt.kaiser | 2009-07-27 12:09:28 -0400 (Mon, 27 Jul 2009) | 5 lines
      
        1. Clean workspace more thoughly before build.
        2. Add url of branch we are building to 'results' webpage.
           (url is now available in $repo_path, could be added to failure email.)
        3. Adjust permissions to improve upload reliability.
      ........
      e223eb84
  17. 01 Haz, 2009 1 kayıt (commit)
  18. 13 May, 2009 1 kayıt (commit)
  19. 18 Ock, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from · b58dda7b
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68633 | thomas.heller | 2009-01-16 12:53:44 -0600 (Fri, 16 Jan 2009) | 3 lines
      
        Change an example in the docs to avoid a mistake when the code is copy
        pasted and changed afterwards.
      ........
        r68648 | benjamin.peterson | 2009-01-16 22:28:57 -0600 (Fri, 16 Jan 2009) | 1 line
      
        use enumerate
      ........
        r68667 | amaury.forgeotdarc | 2009-01-17 14:18:59 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        #4077: No need to append \n when calling Py_FatalError
        + fix a declaration to make it match the one in pythonrun.h
      ........
        r68706 | benjamin.peterson | 2009-01-17 19:28:46 -0600 (Sat, 17 Jan 2009) | 1 line
      
        fix grammar
      ........
        r68718 | georg.brandl | 2009-01-18 04:42:35 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4976: union() and intersection() take multiple args, but talk about "the other".
      ........
        r68720 | georg.brandl | 2009-01-18 04:45:22 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4974: fix redundant mention of lists and tuples.
      ........
        r68721 | georg.brandl | 2009-01-18 04:48:16 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4914: trunc is in math.
      ........
        r68724 | georg.brandl | 2009-01-18 07:24:10 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4979: correct result range for some random functions.
      ........
        r68725 | georg.brandl | 2009-01-18 07:47:26 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4857: fix augmented assignment target spec.
      ........
        r68726 | georg.brandl | 2009-01-18 08:41:52 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4923: clarify what was added.
      ........
        r68727 | georg.brandl | 2009-01-18 12:25:30 -0600 (Sun, 18 Jan 2009) | 1 line
      
        #4986: augassigns are not expressions.
      ........
        r68739 | benjamin.peterson | 2009-01-18 15:11:38 -0600 (Sun, 18 Jan 2009) | 1 line
      
        fix test that wasn't working as expected #4990
      ........
      b58dda7b
  20. 17 Ock, 2009 2 kayıt (commit)
  21. 16 Ock, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 058e31ef
      Benjamin Peterson yazdı
      Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68450 | jeffrey.yasskin | 2009-01-09 10:47:07 -0600 (Fri, 09 Jan 2009) | 3 lines
      
        Fix issue 4884, preventing a crash in the socket code when python is compiled
        with llvm-gcc and run with a glibc <2.10.
      ........
        r68480 | vinay.sajip | 2009-01-10 07:38:04 -0600 (Sat, 10 Jan 2009) | 1 line
      
        Minor documentation changes cross-referencing NullHandler to the documentation on configuring logging in a library.
      ........
        r68481 | vinay.sajip | 2009-01-10 07:42:04 -0600 (Sat, 10 Jan 2009) | 1 line
      
        Corrected an incorrect self-reference.
      ........
        r68493 | benjamin.peterson | 2009-01-10 11:18:55 -0600 (Sat, 10 Jan 2009) | 1 line
      
        rewrite verbose conditionals
      ........
        r68495 | benjamin.peterson | 2009-01-10 11:36:44 -0600 (Sat, 10 Jan 2009) | 1 line
      
        tp_iter only exists with Py_TPFLAGS_HAVE_ITER #4901
      ........
        r68501 | vinay.sajip | 2009-01-10 13:22:57 -0600 (Sat, 10 Jan 2009) | 1 line
      
        Corrected minor typo and added .currentmodule directives to fix missing cross-references.
      ........
        r68512 | benjamin.peterson | 2009-01-10 16:42:10 -0600 (Sat, 10 Jan 2009) | 1 line
      
        make tests fail if they can't be imported
      ........
        r68514 | benjamin.peterson | 2009-01-10 17:41:59 -0600 (Sat, 10 Jan 2009) | 1 line
      
        move seealso to a more appropiate place
      ........
        r68515 | benjamin.peterson | 2009-01-10 17:49:08 -0600 (Sat, 10 Jan 2009) | 1 line
      
        macos 9 isn't supported
      ........
        r68534 | gregory.p.smith | 2009-01-11 11:53:33 -0600 (Sun, 11 Jan 2009) | 2 lines
      
        correct email address
      ........
        r68535 | gregory.p.smith | 2009-01-11 11:57:54 -0600 (Sun, 11 Jan 2009) | 9 lines
      
        Update the documentation for binascii and zlib crc32/adler32 functions
        to better describe the signed vs unsigned return value behavior on
        different platforms and versions of python.  Mention the workaround to
        make them all return the same thing by using & 0xffffffff.
      
        Fixes issue4903.
      
        Also needs to be merged into release26-maint, release30-maint, & py3k.
      ........
        r68536 | benjamin.peterson | 2009-01-11 13:48:15 -0600 (Sun, 11 Jan 2009) | 1 line
      
        add email addresses
      ........
        r68552 | vinay.sajip | 2009-01-12 14:36:18 -0600 (Mon, 12 Jan 2009) | 1 line
      
        Minor changes/corrections in markup.
      ........
        r68563 | benjamin.peterson | 2009-01-12 19:49:10 -0600 (Mon, 12 Jan 2009) | 1 line
      
        small logic correction
      ........
        r68570 | raymond.hettinger | 2009-01-13 03:08:32 -0600 (Tue, 13 Jan 2009) | 5 lines
      
        Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard().
      
        Needs to be backported to 2.6 and forward ported to 3.0 and 3.1.
      ........
        r68571 | armin.ronacher | 2009-01-13 05:52:23 -0600 (Tue, 13 Jan 2009) | 3 lines
      
        ast.literal_eval can properly evaluate complex numbers now.  This fixes issue4907.
      ........
        r68572 | andrew.kuchling | 2009-01-13 07:40:54 -0600 (Tue, 13 Jan 2009) | 1 line
      
        Note that first coord. is left alone
      ........
        r68575 | thomas.heller | 2009-01-13 11:32:28 -0600 (Tue, 13 Jan 2009) | 1 line
      
        Fix refcount leak in error cases.  Bug found by coverity.
      ........
        r68582 | georg.brandl | 2009-01-13 16:14:01 -0600 (Tue, 13 Jan 2009) | 2 lines
      
        Use assertRaises.
      ........
        r68596 | amaury.forgeotdarc | 2009-01-13 17:39:22 -0600 (Tue, 13 Jan 2009) | 3 lines
      
        #1162154: inspect.getmembers() now skips attributes that raise AttributeError,
        e.g. a __slots__ attribute which has not been set.
      ........
        r68623 | vinay.sajip | 2009-01-15 16:48:13 -0600 (Thu, 15 Jan 2009) | 1 line
      
        Made minor changes/corrections in markup. Added a couple of section headings.
      ........
        r68624 | vinay.sajip | 2009-01-15 17:04:47 -0600 (Thu, 15 Jan 2009) | 1 line
      
        Minor changes/corrections in markup.
      ........
        r68628 | benjamin.peterson | 2009-01-15 20:55:24 -0600 (Thu, 15 Jan 2009) | 1 line
      
        compare with == not is #4946
      ........
      058e31ef
  22. 03 Ock, 2009 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from · b1441c7e
      Georg Brandl yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68112 | benjamin.peterson | 2009-01-01 00:48:39 +0100 (Thu, 01 Jan 2009) | 1 line
      
        #4795 inspect.isgeneratorfunction() should return False instead of None
      ........
        r68115 | benjamin.peterson | 2009-01-01 05:04:41 +0100 (Thu, 01 Jan 2009) | 1 line
      
        simplfy code
      ........
        r68120 | georg.brandl | 2009-01-01 13:15:31 +0100 (Thu, 01 Jan 2009) | 4 lines
      
        #4228: Pack negative values the same way as 2.4
        in struct's L format.
      ........
        r68133 | antoine.pitrou | 2009-01-01 16:38:03 +0100 (Thu, 01 Jan 2009) | 1 line
      
        fill in actual issue number in tests
      ........
        r68141 | benjamin.peterson | 2009-01-01 17:43:12 +0100 (Thu, 01 Jan 2009) | 1 line
      
        fix highlighting
      ........
        r68142 | benjamin.peterson | 2009-01-01 18:29:49 +0100 (Thu, 01 Jan 2009) | 2 lines
      
        welcome to 2009, Python!
      ........
        r68145 | amaury.forgeotdarc | 2009-01-02 01:03:54 +0100 (Fri, 02 Jan 2009) | 5 lines
      
        #4801 _collections module fails to build on cygwin.
      
        _PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
        and according to documentation it should not be used for extension modules.
      ........
        r68146 | ronald.oussoren | 2009-01-02 11:44:46 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Fix for issue4472: "configure --enable-shared doesn't work on OSX"
      ........
        r68148 | ronald.oussoren | 2009-01-02 11:48:31 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Forgot to add a NEWS item in my previous checkin
      ........
        r68149 | ronald.oussoren | 2009-01-02 11:50:48 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Fix for issue4780
      ........
      b1441c7e
  23. 12 Kas, 2008 1 kayıt (commit)
  24. 25 Eki, 2008 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 1a6e0d08
      Benjamin Peterson yazdı
      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
  25. 18 Agu, 2008 1 kayıt (commit)
  26. 11 Haz, 2008 1 kayıt (commit)
  27. 10 Haz, 2008 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · 0c77a82c
      Georg Brandl yazdı
      Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63829 | mark.summerfield | 2008-05-31 15:05:34 +0200 (Sat, 31 May 2008) | 4 lines
      
        Added a note to [] that special forms & special chars lose their meaning
        and backrefs can't be used inside []
      ........
        r63830 | georg.brandl | 2008-05-31 16:40:09 +0200 (Sat, 31 May 2008) | 2 lines
      
        #3010: clarification about stdin/use_rawinput.
      ........
        r63831 | georg.brandl | 2008-05-31 16:45:55 +0200 (Sat, 31 May 2008) | 2 lines
      
        #3005: add explaining sentence to easydialogs docs.
      ........
        r63858 | georg.brandl | 2008-06-01 18:41:31 +0200 (Sun, 01 Jun 2008) | 2 lines
      
        Add plain text make target.
      ........
        r63865 | georg.brandl | 2008-06-01 21:24:36 +0200 (Sun, 01 Jun 2008) | 2 lines
      
        Spaces vs. tabs.
      ........
        r63879 | gregory.p.smith | 2008-06-02 00:57:47 +0200 (Mon, 02 Jun 2008) | 3 lines
      
        Make the _H #define's match the header file names.  Fix comments to
        mention the correct type names.
      ........
        r63882 | gregory.p.smith | 2008-06-02 01:48:47 +0200 (Mon, 02 Jun 2008) | 3 lines
      
        Adds a Thread.getIdent() method to provide the _get_ident() value for
        any given threading.Thread object.  feature request issue 2871.
      ........
        r63948 | alexandre.vassalotti | 2008-06-04 22:41:44 +0200 (Wed, 04 Jun 2008) | 2 lines
      
        Fixed complex.__getnewargs__() to not emit another complex object.
      ........
        r63970 | andrew.kuchling | 2008-06-06 01:33:54 +0200 (Fri, 06 Jun 2008) | 1 line
      
        Document 'utc' parameter
      ........
        r63971 | andrew.kuchling | 2008-06-06 01:35:31 +0200 (Fri, 06 Jun 2008) | 1 line
      
        Add various items
      ........
        r63972 | andrew.kuchling | 2008-06-06 01:35:48 +0200 (Fri, 06 Jun 2008) | 1 line
      
        Grammar fix
      ........
        r63976 | georg.brandl | 2008-06-06 09:34:50 +0200 (Fri, 06 Jun 2008) | 2 lines
      
        Markup fix.
      ........
        r63989 | thomas.heller | 2008-06-06 20:42:11 +0200 (Fri, 06 Jun 2008) | 2 lines
      
        Add a reminder for the maintainer of whatsnew.
      ........
        r64014 | georg.brandl | 2008-06-07 17:59:10 +0200 (Sat, 07 Jun 2008) | 3 lines
      
        Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()
        to ease standalone use of the algorithm.
      ........
        r64015 | georg.brandl | 2008-06-07 18:04:01 +0200 (Sat, 07 Jun 2008) | 2 lines
      
        Revert unwanted changes.
      ........
        r64021 | georg.brandl | 2008-06-07 20:16:12 +0200 (Sat, 07 Jun 2008) | 2 lines
      
        X-ref to numbers module.
      ........
        r64022 | georg.brandl | 2008-06-07 20:17:37 +0200 (Sat, 07 Jun 2008) | 3 lines
      
        Document the "st" API, to avoid confusion with the "new" AST.
        Add a note about using the new AST module.
      ........
        r64063 | martin.v.loewis | 2008-06-10 07:03:35 +0200 (Tue, 10 Jun 2008) | 2 lines
      
        Add Gregor Lingl.
      ........
        r64064 | georg.brandl | 2008-06-10 09:45:28 +0200 (Tue, 10 Jun 2008) | 2 lines
      
        Add the "ast" module, containing helpers to ease use of the "_ast" classes.
      ........
        r64065 | raymond.hettinger | 2008-06-10 09:57:15 +0200 (Tue, 10 Jun 2008) | 1 line
      
        Add Arnaud for his efforts on multi-arg set operations.
      ........
        r64067 | georg.brandl | 2008-06-10 14:46:39 +0200 (Tue, 10 Jun 2008) | 2 lines
      
        #2536: fix itertools.permutations and itertools.combinations docstrings.
      ........
      0c77a82c
  28. 09 Nis, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 5e696859
      Christian Heimes yazdı
      Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62194 | jeffrey.yasskin | 2008-04-07 01:04:28 +0200 (Mon, 07 Apr 2008) | 7 lines
      
        Add enough debugging information to diagnose failures where the
        HandlerBException is ignored, and fix one such problem, where it was thrown
        during the __del__ method of the previous Popen object.
      
        We may want to find a better way of printing verbose information so it's not
        spammy when the test passes.
      ........
        r62197 | mark.hammond | 2008-04-07 03:53:39 +0200 (Mon, 07 Apr 2008) | 2 lines
      
        Issue #2513: enable 64bit cross compilation on windows.
      ........
        r62198 | mark.hammond | 2008-04-07 03:59:40 +0200 (Mon, 07 Apr 2008) | 2 lines
      
        correct heading underline for new "Cross-compiling on Windows" section
      ........
        r62204 | gregory.p.smith | 2008-04-07 08:33:21 +0200 (Mon, 07 Apr 2008) | 4 lines
      
        Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatly
        within the standard library.  These modules use PyFile_AsFile and later
        release the GIL while operating on the previously returned FILE*.
      ........
        r62205 | mark.summerfield | 2008-04-07 09:39:23 +0200 (Mon, 07 Apr 2008) | 4 lines
      
        changed "2500 components" to "several thousand" since the number keeps
        growning:-)
      ........
        r62214 | georg.brandl | 2008-04-07 20:51:59 +0200 (Mon, 07 Apr 2008) | 2 lines
      
        #2525: update timezone info examples in the docs.
      ........
        r62219 | andrew.kuchling | 2008-04-08 01:57:07 +0200 (Tue, 08 Apr 2008) | 1 line
      
        Write PEP 3127 section; add items
      ........
        r62220 | andrew.kuchling | 2008-04-08 01:57:21 +0200 (Tue, 08 Apr 2008) | 1 line
      
        Typo fix
      ........
        r62221 | andrew.kuchling | 2008-04-08 03:33:10 +0200 (Tue, 08 Apr 2008) | 1 line
      
        Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit
      ........
        r62227 | andrew.kuchling | 2008-04-08 23:22:53 +0200 (Tue, 08 Apr 2008) | 1 line
      
        Add items
      ........
        r62229 | amaury.forgeotdarc | 2008-04-08 23:27:42 +0200 (Tue, 08 Apr 2008) | 7 lines
      
        Issue2564: Prevent a hang in "import test.autotest", which runs the entire test
        suite as a side-effect of importing the module.
      
        - in test_capi, a thread tried to import other modules
        - re.compile() imported sre_parse again on every call.
      ........
        r62230 | amaury.forgeotdarc | 2008-04-08 23:51:57 +0200 (Tue, 08 Apr 2008) | 2 lines
      
        Prevent an error when inspect.isabstract() is called with something else than a new-style class.
      ........
        r62231 | amaury.forgeotdarc | 2008-04-09 00:07:05 +0200 (Wed, 09 Apr 2008) | 8 lines
      
        Issue 2408: remove the _types module
        It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType),
        when they can easily be obtained with python code.
        These expressions even work with Jython.
      
        I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 )
        at least this change makes it simpler.
      ........
        r62233 | amaury.forgeotdarc | 2008-04-09 01:10:07 +0200 (Wed, 09 Apr 2008) | 2 lines
      
        Add a NEWS entry for previous checkin
      ........
        r62234 | trent.nelson | 2008-04-09 01:47:30 +0200 (Wed, 09 Apr 2008) | 37 lines
      
        - Issue #2550: The approach used by client/server code for obtaining ports
          to listen on in network-oriented tests has been refined in an effort to
          facilitate running multiple instances of the entire regression test suite
          in parallel without issue.  test_support.bind_port() has been fixed such
          that it will always return a unique port -- which wasn't always the case
          with the previous implementation, especially if socket options had been
          set that affected address reuse (i.e. SO_REUSEADDR, SO_REUSEPORT).  The
          new implementation of bind_port() will actually raise an exception if it
          is passed an AF_INET/SOCK_STREAM socket with either the SO_REUSEADDR or
          SO_REUSEPORT socket option set.  Furthermore, if available, bind_port()
          will set the SO_EXCLUSIVEADDRUSE option on the socket it's been passed.
          This currently only applies to Windows.  This option prevents any other
          sockets from binding to the host/port we've bound to, thus removing the
          possibility of the 'non-deterministic' behaviour, as Microsoft puts it,
          that occurs when a second SOCK_STREAM socket binds and accepts to a
          host/port that's already been bound by another socket.  The optional
          preferred port parameter to bind_port() has been removed.  Under no
          circumstances should tests be hard coding ports!
      
          test_support.find_unused_port() has also been introduced, which will pass
          a temporary socket object to bind_port() in order to obtain an unused port.
          The temporary socket object is then closed and deleted, and the port is
          returned.  This method should only be used for obtaining an unused port
          in order to pass to an external program (i.e. the -accept [port] argument
          to openssl's s_server mode) or as a parameter to a server-oriented class
          that doesn't give you direct access to the underlying socket used.
      
          Finally, test_support.HOST has been introduced, which should be used for
          the host argument of any relevant socket calls (i.e. bind and connect).
      
          The following tests were updated to following the new conventions:
            test_socket, test_smtplib, test_asyncore, test_ssl, test_httplib,
            test_poplib, test_ftplib, test_telnetlib, test_socketserver,
            test_asynchat and test_socket_ssl.
      
          It is now possible for multiple instances of the regression test suite to
          run in parallel without issue.
      ........
        r62235 | gregory.p.smith | 2008-04-09 02:25:17 +0200 (Wed, 09 Apr 2008) | 3 lines
      
        Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive.
        It tried to allocate negative or zero memory.  That fails.
      ........
        r62237 | trent.nelson | 2008-04-09 02:34:53 +0200 (Wed, 09 Apr 2008) | 1 line
      
        Fix typo with regards to self.PORT shadowing class variables with the same name.
      ........
        r62238 | andrew.kuchling | 2008-04-09 03:08:32 +0200 (Wed, 09 Apr 2008) | 1 line
      
        Add items
      ........
        r62239 | jerry.seutter | 2008-04-09 07:07:58 +0200 (Wed, 09 Apr 2008) | 1 line
      
        Changed test so it no longer runs as a side effect of importing.
      ........
      5e696859
  29. 18 Mar, 2008 1 kayıt (commit)
    • Trent Nelson's avatar
      - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been · 428de65c
      Trent Nelson yazdı
        renamed tokenize and now works with bytes rather than strings. A new
        detect_encoding function has been added for determining source file encoding
        according to PEP-0263. Token sequences returned by tokenize always start
        with an ENCODING token which specifies the encoding used to decode the file.
        This token is used to encode the output of untokenize back to bytes.
      
      Credit goes to Michael "I'm-going-to-name-my-first-child-unittest" Foord from Resolver Systems for this work.
      428de65c
  30. 03 Mar, 2008 1 kayıt (commit)
  31. 19 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · 7131fd95
      Christian Heimes yazdı
      Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60878,60880-60892,60894-60898 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60876 | georg.brandl | 2008-02-17 16:14:10 +0100 (Sun, 17 Feb 2008) | 2 lines
      
        Fix function name.
      ........
        r60877 | facundo.batista | 2008-02-17 17:21:13 +0100 (Sun, 17 Feb 2008) | 4 lines
      
      
        Now we handle different the backup copy, because of security
        issues regarding user/group and permissions. Fixes 1050828.
      ........
        r60878 | facundo.batista | 2008-02-17 19:59:29 +0100 (Sun, 17 Feb 2008) | 4 lines
      
      
        Issue 2112. mmap does not raises EnvironmentError no more, but
        a subclass of it. Thanks John Lenton.
      ........
        r60882 | amaury.forgeotdarc | 2008-02-17 21:56:31 +0100 (Sun, 17 Feb 2008) | 5 lines
      
        Compilation was broken on Windows since the introduction of Advanced String Formatting.
      
        Only PCBuild (vs9) was really tested.
        Changes for older compilers were done manually.
      ........
        r60883 | georg.brandl | 2008-02-17 22:18:55 +0100 (Sun, 17 Feb 2008) | 2 lines
      
        #2133: fix HTML color spec.
      ........
        r60884 | facundo.batista | 2008-02-18 04:43:43 +0100 (Mon, 18 Feb 2008) | 5 lines
      
      
        Issue #1916. Added isgenerator() and isgeneratorfunction() to
        inspect.py.  Thanks Javi Mansilla for patch review and
        corrections.
      ........
        r60885 | facundo.batista | 2008-02-18 13:48:43 +0100 (Mon, 18 Feb 2008) | 4 lines
      
      
        Issue 1224. Now we support again the double slash in the URL.
        Thanks Anthony Lenton.
      ........
        r60887 | eric.smith | 2008-02-18 15:25:02 +0100 (Mon, 18 Feb 2008) | 1 line
      
        Temporarily removed float tests.  See issue 1600.
      ........
        r60891 | kristjan.jonsson | 2008-02-18 18:40:47 +0100 (Mon, 18 Feb 2008) | 1 line
      
        Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled.
      ........
      7131fd95
  32. 11 Ock, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59883-59920 via svnmerge from · 25bb783c
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59887 | neal.norwitz | 2008-01-10 06:42:58 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Reword entry, not sure I made it much better though.
      ........
        r59888 | andrew.kuchling | 2008-01-10 14:37:12 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Check for fd of -1 to save fsync() and fstat() call
      ........
        r59891 | thomas.heller | 2008-01-10 19:45:40 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Reflow a paragraph, and fix a typo.
      ........
        r59892 | raymond.hettinger | 2008-01-10 20:15:10 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Examples for named tuple subclassing should include __slots__
      ........
        r59895 | raymond.hettinger | 2008-01-10 21:37:12 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Clarify how to add a field to a named tuple.
      ........
        r59896 | amaury.forgeotdarc | 2008-01-10 22:59:42 +0100 (Thu, 10 Jan 2008) | 12 lines
      
        Closing issue1761.
        Surprising behaviour of the "$" regexp: it matches the
        end of the string, AND just before the newline at the end
        of the string::
      
            re.sub('$', '#', 'foo\n') == 'foo#\n#'
      
        Python is consistent with Perl and the pcre library, so
        we just document it.
        Guido prefers "\Z" to match only the end of the string.
      ........
        r59898 | raymond.hettinger | 2008-01-11 00:00:01 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Neaten-up the named tuple docs
      ........
        r59900 | raymond.hettinger | 2008-01-11 01:23:13 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Run doctests on the collections module
      ........
        r59903 | raymond.hettinger | 2008-01-11 02:25:54 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Doctest results return a named tuple for readability
      ........
        r59904 | raymond.hettinger | 2008-01-11 03:12:33 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Comment-out missing constant (from rev 59819)
      ........
        r59905 | raymond.hettinger | 2008-01-11 03:24:13 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Have Decimal.as_tuple return a named tuple.
      ........
        r59906 | raymond.hettinger | 2008-01-11 04:04:50 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Let most inspect functions return named tuples
      ........
        r59907 | raymond.hettinger | 2008-01-11 04:20:54 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Improve usability of the SequenceMatcher by returning named tuples describing match ranges.
      ........
        r59909 | thomas.heller | 2008-01-11 09:04:03 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Add an important missing blank.
      ........
        r59910 | georg.brandl | 2008-01-11 10:19:11 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        Guard definition of TIPC_SUB_CANCEL with an #ifdef.
      ........
        r59911 | georg.brandl | 2008-01-11 10:20:58 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        News entries for rev. 5990[567].
      ........
        r59912 | georg.brandl | 2008-01-11 10:55:53 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        Documentation for r5990[3567].
      ........
        r59913 | thomas.heller | 2008-01-11 13:41:39 +0100 (Fri, 11 Jan 2008) | 4 lines
      
        The sqlite3 dll, when compiled in debug mode, must be linked with /MDd
        to use the debug runtime library.  Further, the dll will be named
        sqlite3_d.dll.
      ........
        r59919 | thomas.heller | 2008-01-11 16:38:46 +0100 (Fri, 11 Jan 2008) | 6 lines
      
        Revert revision 59913, because it was wrong:
      
          The sqlite3 dll, when compiled in debug mode, must be linked with
          /MDd to use the debug runtime library.  Further, the dll will be
          named sqlite3_d.dll.
      ........
        r59920 | christian.heimes | 2008-01-11 16:42:29 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Removed unused variable
      ........
      25bb783c
  33. 04 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Removed PyInt_GetMax and sys.maxint · a37d4c69
      Christian Heimes yazdı
      I replaced sys.maxint with sys.maxsize in Lib/*.py. Does anybody see a problem with the change on Win 64bit platforms? Win 64's long is just 32bit but the sys.maxsize is now 2**63-1 on every 64bit platform.
      Also added docs for sys.maxsize.
      a37d4c69
  34. 02 Ara, 2007 1 kayıt (commit)