summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove exception for non-NULL tp_compare that was introduced in r69188.Mark Dickinson2009-02-011-7/+0
|
* Issue #1717: documentation fixes related to the cmp removal.Mark Dickinson2009-02-016-36/+45
|
* Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarationsMark Dickinson2009-02-015-38/+24
| | | | | | from object.h; don't inherit tp_compare slot on subclasses; and raise TypeError when initializing a type that has a nonzero tp_compare slot. Fix up comparison-related comments in object.c and code.h.
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-018-184/+6
| | | | PyObject_Cmp, PyObject_Compare, and various support functions.
* Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson2009-02-0115-113/+385
| | | | Objects.
* Simplify write_bytecode for importlib.Brett Cannon2009-02-011-30/+7
|
* Update importlib notes.Brett Cannon2009-02-011-12/+11
|
* Ditch read_source() and read_bytecode() and replace with *_path() andBrett Cannon2009-02-012-40/+8
| | | | get_data().
* Expose source_path and bytecode_path on _PyFileLoader.Brett Cannon2009-02-012-11/+13
|
* Remove an outdated todo item from importlib.Brett Cannon2009-02-011-6/+0
|
* Move import semantic util code to importlib.test.import_.util.Brett Cannon2009-02-0110-92/+99
|
* Rename importlib.test.support to importlib.test.util.Brett Cannon2009-02-0122-191/+163
|
* Do not execute the .pyc/.pyo files as well as the .py files.Brett Cannon2009-02-011-1/+4
|
* Split out support code that is specific to source tests out ofBrett Cannon2009-02-018-113/+123
| | | | importlib.test.support to importlib.test.source.util.
* Move source loader tests (including reload tests) over toBrett Cannon2009-02-013-77/+72
| | | | importlib.test.abc.LoaderTests.
* Fix importlib.machinery.FrozenImporter.load_module() to set __package__Brett Cannon2009-02-013-20/+57
| | | | | properly. Discovered by also moving the loader tests over to importlib.test.abc.LoaderTests.
* Move extension module loader tests over to importlib.test.abc.LoaderTests.Brett Cannon2009-02-012-4/+22
|
* Move built-in loader tests to importlib.test.abc.LoaderTests.Brett Cannon2009-02-012-5/+24
|
* documentation wording fix for issue4903Gregory P. Smith2009-02-012-6/+6
|
* Blocked revisions 69146,69149 via svnmergeBenjamin Peterson2009-01-310-0/+0
| | | | | | | | | | | | ........ r69146 | benjamin.peterson | 2009-01-31 15:47:42 -0600 (Sat, 31 Jan 2009) | 1 line fix indentation ........ r69149 | benjamin.peterson | 2009-01-31 16:03:19 -0600 (Sat, 31 Jan 2009) | 1 line fix indentation; looks like all I managed to do the first time is make things uglier ........
* fix indentation againBenjamin Peterson2009-01-311-2497/+2497
|
* Blocked revisions 69134 via svnmergeBenjamin Peterson2009-01-310-0/+0
| | | | | | | | ........ r69134 | benjamin.peterson | 2009-01-31 10:29:18 -0600 (Sat, 31 Jan 2009) | 1 line completely detabify unicodeobject.c ........
* detabify Objects/unicodeobject.cBenjamin Peterson2009-01-311-3092/+3092
|
* Make Python/makeopcodetargets runnable with Python 2.3. With any luck, thisMark Dickinson2009-01-311-1/+4
| | | | should solve the 'failed compile' on the x86 gentoo 3.x buildbot.
* comprehrensions now have proper scoping #5106Benjamin Peterson2009-01-311-2/+2
|
* Merged revisions 68840,68881,68943,68945 via svnmerge fromBenjamin Peterson2009-01-302-13/+91
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68840 | andrew.kuchling | 2009-01-20 20:15:43 -0600 (Tue, 20 Jan 2009) | 1 line Add some items ........ r68881 | andrew.kuchling | 2009-01-23 21:28:18 -0600 (Fri, 23 Jan 2009) | 1 line Add various items ........ r68943 | tarek.ziade | 2009-01-25 16:09:10 -0600 (Sun, 25 Jan 2009) | 1 line Issue #5052: removed backward compatibility information (out of date) ........ r68945 | tarek.ziade | 2009-01-25 16:11:04 -0600 (Sun, 25 Jan 2009) | 1 line added missing module docstring ........
* Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge fromBenjamin Peterson2009-01-306-37/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68884 | kristjan.jonsson | 2009-01-24 04:52:26 -0600 (Sat, 24 Jan 2009) | 1 line Add a test for UNC import paths, see issue 3677 ........ r68973 | georg.brandl | 2009-01-26 15:29:38 -0600 (Mon, 26 Jan 2009) | 2 lines Copy over docs on advanced role features from Sphinx docs. ........ r68978 | mark.dickinson | 2009-01-26 15:51:56 -0600 (Mon, 26 Jan 2009) | 3 lines Issue #5073: Fix occasional failure of bsddb/test/test_lock.py. Thanks Hirokazu Yamamoto for the patch. ........ r69003 | benjamin.peterson | 2009-01-26 21:07:53 -0600 (Mon, 26 Jan 2009) | 1 line excellent place to use a set() #5069 ........ r69083 | benjamin.peterson | 2009-01-28 21:03:00 -0600 (Wed, 28 Jan 2009) | 1 line fix download url ........ r69112 | benjamin.peterson | 2009-01-29 20:02:25 -0600 (Thu, 29 Jan 2009) | 1 line pep8tify conditionals ........ r69113 | benjamin.peterson | 2009-01-29 20:24:39 -0600 (Thu, 29 Jan 2009) | 1 line make _tkinter._flatten check the result of PySequence_Size for errors #3880 ........
* Issue #5041: Fixed memory leak.Hirokazu Yamamoto2009-01-301-2/+4
|
* Blocked revisions 68772,68892,69039 via svnmergeBenjamin Peterson2009-01-300-0/+0
| | | | | | | | | | | | | | | | ........ r68772 | benjamin.peterson | 2009-01-19 09:42:23 -0600 (Mon, 19 Jan 2009) | 1 line add a note about the ftruncate change ........ r68892 | martin.v.loewis | 2009-01-24 09:45:18 -0600 (Sat, 24 Jan 2009) | 2 lines Add heading for 2.7a0. ........ r69039 | benjamin.peterson | 2009-01-27 17:15:48 -0600 (Tue, 27 Jan 2009) | 1 line use True and False ........
* fix a case of set_daemon #5087Benjamin Peterson2009-01-301-1/+1
|
* The trace module was trying to turn ints into ints since co_lnotab was changedBrett Cannon2009-01-302-1/+4
| | | | to a bytes object.
* Merge testing ABCs for importlib into importlib.test.abc.Brett Cannon2009-01-306-47/+45
|
* Merged revisions 69106 via svnmerge fromTarek Ziadé2009-01-291-9/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69106 | tarek.ziade | 2009-01-30 00:49:17 +0100 (Fri, 30 Jan 2009) | 1 line fixed test_make_distribution so it runs on any platform, as long as tar an gzip are available ........
* Fix error in docs. The source says proto 2 is the default.Raymond Hettinger2009-01-291-1/+1
|
* Merged revisions 69100 via svnmerge fromAntoine Pitrou2009-01-293-1/+33
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69100 | antoine.pitrou | 2009-01-29 21:19:34 +0100 (jeu., 29 janv. 2009) | 5 lines Issue #2047: shutil.move() could believe that its destination path was inside its source path if it began with the same letters (e.g. "src" vs. "src.new"). ........
* Fix issue5076: bdist_wininst fails on py3kMark Hammond2009-01-293-7/+40
|
* Merged revisions 69094 via svnmerge fromMark Hammond2009-01-294-91/+92
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69094 | mark.hammond | 2009-01-29 23:13:31 +1100 (Thu, 29 Jan 2009) | 2 lines Fix issue5075: bdist_wininst should not depend on the vc runtime? ........
* Merged revisions 69078-69080 via svnmerge fromBrett Cannon2009-01-292-2/+4
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69078 | brett.cannon | 2009-01-28 16:54:11 -0800 (Wed, 28 Jan 2009) | 2 lines Clarify some __del__ stuff. ........ r69079 | brett.cannon | 2009-01-28 16:54:32 -0800 (Wed, 28 Jan 2009) | 2 lines Minor spelling mistake in datetime docs. ........ r69080 | brett.cannon | 2009-01-28 16:55:33 -0800 (Wed, 28 Jan 2009) | 2 lines Ignore .pyc and .pyo files. ........
* Blocked revisions 69085,69087 via svnmergeBenjamin Peterson2009-01-290-0/+0
| | | | | | | | | | | | ........ r69085 | raymond.hettinger | 2009-01-28 21:21:42 -0600 (Wed, 28 Jan 2009) | 1 line Update itertools.__doc__ to include all tools. ........ r69087 | raymond.hettinger | 2009-01-28 21:43:44 -0600 (Wed, 28 Jan 2009) | 1 line Fix typo. ........
* Fix typo.Raymond Hettinger2009-01-291-6/+6
|
* Update itertools.__doc__ to include all tools.Raymond Hettinger2009-01-291-4/+11
|
* Blocked revisions 68521 via svnmergeBenjamin Peterson2009-01-290-0/+0
| | | | | | | | ........ r68521 | hirokazu.yamamoto | 2009-01-10 21:28:13 -0600 (Sat, 10 Jan 2009) | 1 line Fixed version number in build_ssl.bat. ........
* Blocked revisions 69070,69074 via svnmergeBenjamin Peterson2009-01-290-0/+0
| | | | | | | | | | | | | | ........ r69070 | raymond.hettinger | 2009-01-28 17:02:26 -0600 (Wed, 28 Jan 2009) | 6 lines Issue 4920: Fixed next() vs __next__() issues in the ABCs for Iterator and MutableSet. Also added thorough test for required abstractmethods. ........ r69074 | raymond.hettinger | 2009-01-28 17:58:16 -0600 (Wed, 28 Jan 2009) | 1 line Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the table by taking out inherited requirements for abstract methods. ........
* Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the ↵Raymond Hettinger2009-01-291-15/+13
| | | | table by taking out inherited requirements for abstract methods.
* Beef-up tests for collections ABCs.Raymond Hettinger2009-01-282-3/+64
|
* Issue #4707: round(x, n) now returns an integer when x is an integer.Mark Dickinson2009-01-285-33/+217
| | | | Previously it returned a float.
* Merged revisions 69060-69063 via svnmerge fromGuilherme Polo2009-01-286-9/+49
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69060 | guilherme.polo | 2009-01-28 17:23:28 -0200 (Wed, 28 Jan 2009) | 2 lines Added support for collecting tests only from specific packages. ........ r69061 | guilherme.polo | 2009-01-28 17:28:04 -0200 (Wed, 28 Jan 2009) | 4 lines * Renaming test_tk_* to test_ttk_* since that is what they are testing. * Added ttk tests to the expected skips mapping just like where test_tcl was expected to be skipped too. ........ r69062 | guilherme.polo | 2009-01-28 18:02:01 -0200 (Wed, 28 Jan 2009) | 1 line Make sure the root windows gets destroyed ........ r69063 | guilherme.polo | 2009-01-28 18:03:26 -0200 (Wed, 28 Jan 2009) | 2 lines Issue #5083: New 'gui' resource for regrtest. ........
* Merged revisions 69053 via svnmerge fromGuilherme Polo2009-01-2816-0/+1196
| | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69053 | guilherme.polo | 2009-01-28 13:56:01 -0200 (Wed, 28 Jan 2009) | 2 lines Demos for ttk added. ........
* Merged revisions 69050 via svnmerge fromGuilherme Polo2009-01-2815-2/+5074
| | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69050 | guilherme.polo | 2009-01-28 11:09:03 -0200 (Wed, 28 Jan 2009) | 2 lines Added the ttk module. See issue #2983: Ttk support for Tkinter. ........
* Merged revisions 69038 via svnmerge fromMark Hammond2009-01-272-2/+76
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69038 | mark.hammond | 2009-01-28 10:12:23 +1100 (Wed, 28 Jan 2009) | 3 lines On Windows, use the Python 'Activation Context' when loading extensions to avoid problems loading the CRT from a private assembly. Via bug 4566. ........