summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge fromBenjamin Peterson2009-01-303-32/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ........
* The trace module was trying to turn ints into ints since co_lnotab was changedBrett Cannon2009-01-301-1/+1
| | | | 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 ........
* Merged revisions 69100 via svnmerge fromAntoine Pitrou2009-01-292-1/+29
| | | | | | | | | | | | 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-292-0/+0
|
* Merged revisions 69094 via svnmerge fromMark Hammond2009-01-292-0/+0
| | | | | | | | | | 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? ........
* 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-282-3/+78
| | | | Previously it returned a float.
* Merged revisions 69060-69063 via svnmerge fromGuilherme Polo2009-01-285-9/+43
| | | | | | | | | | | | | | | | | | | | | | | | 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 69050 via svnmerge fromGuilherme Polo2009-01-2812-0/+3668
| | | | | | | | | | 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. ........
* Fix an occurrence of cmp that was missed in r69025Mark Dickinson2009-01-271-5/+9
|
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-2731-200/+207
| | | | the standard library and tests.
* Add more tests for the powerset() recipe.Raymond Hettinger2009-01-271-0/+6
|
* Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of ↵Raymond Hettinger2009-01-271-0/+2
| | | | r68962.
* More exhaustive combinatoric checks.Raymond Hettinger2009-01-271-16/+28
|
* Issue 5021: doctest.testfile should set __name__Raymond Hettinger2009-01-272-1/+5
|
* Stronger tests for combinatoric relationships.Raymond Hettinger2009-01-271-1/+5
|
* Add tests to verify combinatoric relationships.Raymond Hettinger2009-01-271-0/+26
|
* Beautify grouper() recipe in docs.Raymond Hettinger2009-01-271-1/+1
|
* Forward port r69001: itertools.combinations_with_replacement().Raymond Hettinger2009-01-271-38/+78
|
* Initial take on importlib.test.loader_tests.Brett Cannon2009-01-272-8/+66
|
* Update importlib NOTES.Brett Cannon2009-01-271-2/+9
|
* Move importlib.test.frozen.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-5/+8
|
* Move importlib.test.builtin.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-8/+27
|
* Make importlib.test.finder_tests an ABC.Brett Cannon2009-01-271-14/+14
|
* Move importlib.test.extension.test_finder over to importlib.test.finder_tests.Brett Cannon2009-01-271-2/+19
|
* Forward port r68985: Idle startup message.Raymond Hettinger2009-01-271-12/+2
|
* Fix test so as to also pass in debug modeAntoine Pitrou2009-01-261-1/+1
|
* Followup of #4705: we can't skip the binary buffering layer for stdin ↵Antoine Pitrou2009-01-261-0/+10
| | | | because FileIO doesn't have a read1() method
* Merged revisions 68951 via svnmerge fromTarek Ziadé2009-01-262-11/+70
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68951 | tarek.ziade | 2009-01-26 00:34:00 +0100 (Mon, 26 Jan 2009) | 1 line Fixed #1885: --formats=tar,gztar was not working properly in the sdist command ........
* Forward port r68941 adding itertools.compress().Raymond Hettinger2009-01-261-8/+32
|
* Backport r68942: update powerset() recipe.Raymond Hettinger2009-01-261-7/+5
|
* As discussed on python-dev, remove several operator functionsRaymond Hettinger2009-01-264-62/+2
| | | | | | | | | isSequenceType(), isMappingType(), and isNumberType() in favor of using abstract base classes. Also, remove repeat() and irepeat() in favor of mul() and imul(). After the buildbots have had a go at this. Will backport to Py3.0.1. For Py2.7, will just mark as deprecated.
* Update NOTES for importlib.Brett Cannon2009-01-261-18/+8
|
* Merged revisions 68933 via svnmerge fromTarek Ziadé2009-01-251-1/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68933 | tarek.ziade | 2009-01-25 20:29:10 +0100 (Sun, 25 Jan 2009) | 1 line Issue #4863, removing remaining bits ........
* Merged revisions 68929 via svnmerge fromTarek Ziadé2009-01-252-248/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68929 | tarek.ziade | 2009-01-25 19:19:25 +0100 (Sun, 25 Jan 2009) | 1 line Fixed #4863: removed distutils.mwerkscompiler ........
* Merged revisions 68920 via svnmerge fromMark Dickinson2009-01-251-3/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68920 | mark.dickinson | 2009-01-25 10:39:15 +0000 (Sun, 25 Jan 2009) | 2 lines Remove uses of cmp from the decimal module. ........
* Document both importlib.machinery.BuiltinImporter and FrozenImporter.Brett Cannon2009-01-252-8/+2
|
* merge r68915 to py3kJesse Noller2009-01-252-13/+26
|
* Merged revisions 68903,68906 via svnmerge fromMark Dickinson2009-01-242-5/+15
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68903 | mark.dickinson | 2009-01-24 16:40:29 +0000 (Sat, 24 Jan 2009) | 5 lines Issue #1672332: Fix unpickling of subnormal floats, which was raising ValueError on some platforms as a result of the platform strtod setting errno on underflow. ........ r68906 | mark.dickinson | 2009-01-24 21:08:38 +0000 (Sat, 24 Jan 2009) | 2 lines Issue #3657: fix occasional test_pickletools failures. ........
* Merged revisions 68897 via svnmerge fromMark Dickinson2009-01-241-3/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68897 | mark.dickinson | 2009-01-24 16:17:27 +0000 (Sat, 24 Jan 2009) | 2 lines Issue #5025: Fix occasional test_kqueue failure on OS X. ........
* Merged revisions 68893 via svnmerge fromMartin v. Löwis2009-01-241-0/+35
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68893 | martin.v.loewis | 2009-01-24 16:47:27 +0100 (Sa, 24 Jan 2009) | 3 lines Issue #3881: Help Tcl to load even when started through the unreadable local symlink to "Program Files" on Vista. ........
* Merged revisions 68885 via svnmerge fromMartin v. Löwis2009-01-243-4/+45
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68885 | martin.v.loewis | 2009-01-24 15:00:33 +0100 (Sa, 24 Jan 2009) | 3 lines Issue #4710: Extract directories properly in the zipfile module; allow adding directories to a zipfile. ........
* Add a test for UNC import paths, see issue 3677Kristján Valur Jónsson2009-01-241-0/+21
|
* Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge fromBenjamin Peterson2009-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68750 | benjamin.peterson | 2009-01-18 16:47:04 -0600 (Sun, 18 Jan 2009) | 1 line fix encoding cookie case ........ r68776 | benjamin.peterson | 2009-01-19 10:17:54 -0600 (Mon, 19 Jan 2009) | 1 line move BufferedIOBase into the base class section ........ r68777 | benjamin.peterson | 2009-01-19 10:18:27 -0600 (Mon, 19 Jan 2009) | 1 line add email address ........ r68811 | benjamin.peterson | 2009-01-20 12:58:27 -0600 (Tue, 20 Jan 2009) | 1 line fix url ........ r68842 | andrew.kuchling | 2009-01-20 20:16:26 -0600 (Tue, 20 Jan 2009) | 1 line Markup fixes ........ r68859 | georg.brandl | 2009-01-22 12:29:28 -0600 (Thu, 22 Jan 2009) | 2 lines Clarify wording. ........
* Add some comment markers to more clearly delineate what different parts of theBrett Cannon2009-01-221-1/+5
| | | | | code are for. Also add a note that the import * at the end of the file should eventually go away.
* Add importlib.machinery with its first tenants, BuitinImporter andBrett Cannon2009-01-227-75/+68
| | | | | | | | FrozenImporter. Docs forthcoming. I plan on all finders and loaders (and most likely hooks) to live in imoprtlib.machinery. Utility stuff will end up in importlib.util. Higher-level API stuff will stay on imoprtlib directly (e.g. import_module).
* Followup of #4874: also fix multibytecodec.cAntoine Pitrou2009-01-221-1/+11
|
* Issue #4874: Most builtin decoders now reject unicode input.Antoine Pitrou2009-01-221-0/+31
|