summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Update comments and add an optimized path for Counter.update().Raymond Hettinger2009-01-221-3/+5
|
* Tighten-up the docs for Counter().Raymond Hettinger2009-01-211-0/+5
|
* Simplify explanation of multiset operations by removing restrictions on ↵Raymond Hettinger2009-01-212-10/+11
| | | | negative inputs.
* merge r68839 forward to py3kJesse Noller2009-01-212-3/+5
|
* Merged revisions 68835 via svnmerge fromAntoine Pitrou2009-01-211-0/+11
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68835 | antoine.pitrou | 2009-01-21 01:45:36 +0100 (mer., 21 janv. 2009) | 6 lines Issue #5008: When a file is opened in append mode with the new IO library, do an explicit seek to the end of file (so that e.g. tell() returns the file size rather than 0). This is consistent with the behaviour of the traditional 2.x file object. ........
* Issue 5013: Fixed bug in FileHandler when delay was set - added fix for ↵Vinay Sajip2009-01-212-13/+16
| | | | RotatingFileHandler and changed header comment slightly.
* Revert part of r68799 which unintentionally updated this file.Raymond Hettinger2009-01-201-0/+0
|