summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Beautify grouper() recipe in docs.Raymond Hettinger2009-01-272-2/+2
|
* Put functions back in alphabetical order.Raymond Hettinger2009-01-271-39/+38
|
* Forward port r69001: itertools.combinations_with_replacement().Raymond Hettinger2009-01-275-59/+379
|
* Blocked revisions 68998 via svnmergeBenjamin Peterson2009-01-270-0/+0
| | | | | | | | ........ r68998 | raymond.hettinger | 2009-01-26 20:36:33 -0600 (Mon, 26 Jan 2009) | 3 lines Tweak column alignment for collections docs. ........
* Initial take on importlib.test.loader_tests.Brett Cannon2009-01-272-8/+66
|
* Tweak column alignment in collections docs.Raymond Hettinger2009-01-271-33/+26
|
* Blocked revisions 68964,68985 via svnmergeBenjamin Peterson2009-01-270-0/+0
| | | | | | | | | | | | | | | ........ r68964 | raymond.hettinger | 2009-01-26 10:52:22 -0600 (Mon, 26 Jan 2009) | 1 line Fix signed/unsigned mismatch. ........ r68985 | raymond.hettinger | 2009-01-26 17:29:09 -0600 (Mon, 26 Jan 2009) | 6 lines Remove startup firewall message. That is handled by an error dialog whenever a connection cannot be formed. Also, the Idle version number is already in the About Idle dialog. Now, the startup is clean looking once again. ........
* 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
|
* Merged revisions 68974-68975 via svnmerge fromMark Dickinson2009-01-261-8/+9
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68974 | mark.dickinson | 2009-01-26 21:36:30 +0000 (Mon, 26 Jan 2009) | 4 lines Fix undefined behaviour (left shift of negative value) in long_hash. Also, rewrap a line of length > 79, and update comments. ........ r68975 | mark.dickinson | 2009-01-26 21:40:08 +0000 (Mon, 26 Jan 2009) | 2 lines Fix comment. ........
* Followup of #4705: we can't skip the binary buffering layer for stdin ↵Antoine Pitrou2009-01-262-2/+17
| | | | because FileIO doesn't have a read1() method
* Merged revisions 68951 via svnmerge fromTarek Ziadé2009-01-263-11/+73
| | | | | | | | | | 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 ........
* Fix signed/unsigned mismatch.Raymond Hettinger2009-01-261-1/+1
|
* Blocked revisions 68941-68942 via svnmergeBenjamin Peterson2009-01-260-0/+0
| | | | | | | | | | | | ........ r68941 | raymond.hettinger | 2009-01-25 15:04:14 -0600 (Sun, 25 Jan 2009) | 1 line Promote compress() from a recipe to being a regular itertool. ........ r68942 | raymond.hettinger | 2009-01-25 15:31:47 -0600 (Sun, 25 Jan 2009) | 1 line Improved itertools recipe for generating powerset(). ........
* Forward port r68941 adding itertools.compress().Raymond Hettinger2009-01-265-13/+206
|
* Backport r68942: update powerset() recipe.Raymond Hettinger2009-01-262-12/+8
|
* As discussed on python-dev, remove several operator functionsRaymond Hettinger2009-01-267-153/+6
| | | | | | | | | 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
|
* Blocked revisions 68953 via svnmergeBrett Cannon2009-01-260-0/+0
| | | | | | | | | ........ r68953 | brett.cannon | 2009-01-25 17:16:50 -0800 (Sun, 25 Jan 2009) | 3 lines Backport importlib in the form of providing importlib.import_module(). This has been done purely to help transitions from 2.7 to 3.1. ........
* Merged revisions 68947 via svnmerge fromMark Dickinson2009-01-251-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68947 | mark.dickinson | 2009-01-25 22:12:31 +0000 (Sun, 25 Jan 2009) | 3 lines No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough. This change should silence a compiler warning on Windows. ........
* use the classmethod directiveBenjamin Peterson2009-01-251-4/+4
|
* Merged revisions 68933 via svnmerge fromTarek Ziadé2009-01-252-18/+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-253-248/+2
| | | | | | | | | | 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 ........
* Blocked revisions 68927 via svnmergeHirokazu Yamamoto2009-01-250-0/+0
| | | | | | | | ........ r68927 | hirokazu.yamamoto | 2009-01-26 02:46:48 +0900 | 1 line Fixed compile error on windows. ........
* Blocked revisions 68925 via svnmergeBenjamin Peterson2009-01-250-0/+0
| | | | | | | | | | | ........ r68925 | benjamin.peterson | 2009-01-25 11:15:10 -0600 (Sun, 25 Jan 2009) | 5 lines fix building the core with --disable-unicode I changed some bytearray methods to use strings instead of unicode like bytes_repr Also, bytearray.fromhex() can take strings as well as unicode ........
* Issue #4753: By enabling a configure option named '--with-computed-gotos'Antoine Pitrou2009-01-258-4952/+6305
| | | | | | on compilers that support it (notably: gcc, SunPro, icc), the bytecode evaluation loop is compiled with a new dispatch mechanism which gives speedups of up to 20%, depending on the system, on various benchmarks.
* 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-253-9/+49
|
* Add the terms "finder", "loader", and "importer" to the glossary.Brett Cannon2009-01-251-0/+14
|
* merge r68915 to py3kJesse Noller2009-01-255-20/+82
|
* Merged revisions 68903,68906 via svnmerge fromMark Dickinson2009-01-244-6/+20
| | | | | | | | | | | | | | | | 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-242-0/+38
| | | | | | | | | | | 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 68890 via svnmerge fromMark Dickinson2009-01-241-23/+20
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68890 | mark.dickinson | 2009-01-24 15:27:44 +0000 (Sat, 24 Jan 2009) | 6 lines Issue #4393: fix 3 classes of potential portability problems in longobject.c: - fix some places where counters into ob_digit were declared as int instead of Py_ssize_t - add (twodigit) casts where necessary - fix code in _PyLong_AsByteArray that uses << on negative values ........
* Some minor cleanups in PyLong_FromLong:Mark Dickinson2009-01-241-12/+15
| | | | | | | | | - fast path wasn't being properly taken for negative ints; thanks Victor Stinner for pointing this out. - use Py_SAFE_DOWNCAST instead of direct casting to digit (it's safer, especially if we ever consider moving to 30-bit digits) - cleaner way to write negation
* Merged revisions 68885 via svnmerge fromMartin v. Löwis2009-01-244-4/+48
| | | | | | | | | | | 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
|
* Issue 3677: Release the path string on py3kKristján Valur Jónsson2009-01-241-0/+1
|
* Factor common branch in load_long().Alexandre Vassalotti2009-01-241-5/+2
| | | | Suggested by Neal Norwitz.
* merge 68874 to py3kwq!Jesse Noller2009-01-232-3/+10
|
* Merged revisions 68457 via svnmerge fromHirokazu Yamamoto2009-01-231-14/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68457 | kristjan.jonsson | 2009-01-10 05:10:59 +0900 | 1 line Issue 3677: Fix import from UNC paths on Windows. ........
* Clean up pickle usage examples.Alexandre Vassalotti2009-01-231-31/+18
|
* Issue 2980: Protocol 0 is not truly restricted to ASCII.Alexandre Vassalotti2009-01-231-2/+2
|
* Remove obsolete note on binary-mode vs. text-mode file.Alexandre Vassalotti2009-01-231-10/+0
|
* Remove unnecessary copying in load_long().Alexandre Vassalotti2009-01-231-11/+3
|