summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* completely detabify unicodeobject.cBenjamin Peterson2009-01-311-3010/+3010
|
* Text edits and markup fixesAndrew M. Kuchling2009-01-311-60/+64
|
* Add a sectionAndrew M. Kuchling2009-01-311-0/+17
|
* check the errno in bad fd casesBenjamin Peterson2009-01-311-2/+8
|
* make _tkinter._flatten check the result of PySequence_Size for errors #3880Benjamin Peterson2009-01-302-2/+13
|
* pep8tify conditionalsBenjamin Peterson2009-01-301-29/+58
|
* fixed test_make_distribution so it runs on any platform, as long as tar an ↵Tarek Ziadé2009-01-291-9/+6
| | | | gzip are available
* Issue #2047: shutil.move() could believe that its destination path wasAntoine Pitrou2009-01-293-1/+33
| | | | | inside its source path if it began with the same letters (e.g. "src" vs. "src.new").
* Fix issue5075: bdist_wininst should not depend on the vc runtime?Mark Hammond2009-01-294-91/+92
|
* Fix typo.Raymond Hettinger2009-01-291-1/+1
|
* Update itertools.__doc__ to include all tools.Raymond Hettinger2009-01-291-5/+12
|
* fix download urlBenjamin Peterson2009-01-291-1/+1
|
* Ignore .pyc and .pyo files.Brett Cannon2009-01-290-0/+0
|
* Minor spelling mistake in datetime docs.Brett Cannon2009-01-291-1/+1
|
* Clarify some __del__ stuff.Brett Cannon2009-01-291-1/+3
|
* Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the ↵Raymond Hettinger2009-01-281-15/+13
| | | | table by taking out inherited requirements for abstract methods.
* Issue 4920: Fixed next() vs __next__() issues in the ABCsRaymond Hettinger2009-01-283-4/+68
| | | | | for Iterator and MutableSet. Also added thorough test for required abstractmethods.
* Issue #5083: New 'gui' resource for regrtest.Guilherme Polo2009-01-282-1/+8
|
* Make sure the root windows gets destroyedGuilherme Polo2009-01-281-1/+4
|
* * Renaming test_tk_* to test_ttk_* since that is what they are testing.Guilherme Polo2009-01-283-2/+20
| | | | | * Added ttk tests to the expected skips mapping just like where test_tcl was expected to be skipped too.
* Added support for collecting tests only from specific packages.Guilherme Polo2009-01-281-4/+11
|
* Demos for ttk added.Guilherme Polo2009-01-2816-0/+1197
|
* Added the ttk module. See issue #2983: Ttk support for Tkinter.Guilherme Polo2009-01-2814-1/+5089
|
* use True and FalseBenjamin Peterson2009-01-271-3/+3
|
* On Windows, use the Python 'Activation Context' when loading extensionsMark Hammond2009-01-272-2/+76
| | | | to avoid problems loading the CRT from a private assembly. Via bug 4566.
* Add more tests for the powerset() recipe.Raymond Hettinger2009-01-271-0/+6
|
* More exhaustive combinatoric checks.Raymond Hettinger2009-01-271-16/+28
|
* Issue 5021: doctest.testfile should set __name__Raymond Hettinger2009-01-272-1/+4
|
* Stronger tests for combinatoric relationships.Raymond Hettinger2009-01-272-1/+9
|
* Add tests to verify combinatoric relationships.Raymond Hettinger2009-01-271-0/+26
|
* excellent place to use a set() #5069Benjamin Peterson2009-01-271-2/+2
|
* Promote combinations_with_replacement() from a recipe to a regular itertool.Raymond Hettinger2009-01-275-59/+379
|
* Tweak column alignment for collections docs.Raymond Hettinger2009-01-271-33/+26
|
* Remove startup firewall message. That is handled by an error dialogRaymond Hettinger2009-01-261-12/+2
| | | | | | 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.
* Issue #5073: Fix occasional failure of bsddb/test/test_lock.py. ThanksMark Dickinson2009-01-261-1/+1
| | | | Hirokazu Yamamoto for the patch.
* Fix comment.Mark Dickinson2009-01-261-3/+3
|
* Fix undefined behaviour (left shift of negative value) in long_hash. Also,Mark Dickinson2009-01-261-9/+10
| | | | rewrap a line of length > 79, and update comments.
* Copy over docs on advanced role features from Sphinx docs.Georg Brandl2009-01-261-3/+15
|
* Fix signed/unsigned mismatch.Raymond Hettinger2009-01-261-1/+1
|
* Backport importlib in the form of providing importlib.import_module(). This hasBrett Cannon2009-01-265-0/+242
| | | | been done purely to help transitions from 2.7 to 3.1.
* Fixed #1885: --formats=tar,gztar was not working properly in the sdist commandTarek Ziadé2009-01-253-11/+73
|
* No need for carry to be type twodigits in _PyLong_AsByteArray; digit is ↵Mark Dickinson2009-01-251-1/+1
| | | | | | large enough. This change should silence a compiler warning on Windows.
* added missing module docstringTarek Ziadé2009-01-251-0/+5
|
* Issue #5052: removed backward compatibility information (out of date)Tarek Ziadé2009-01-2536-72/+0
|
* Improved itertools recipe for generating powerset().Raymond Hettinger2009-01-252-12/+8
|
* Promote compress() from a recipe to being a regular itertool.Raymond Hettinger2009-01-255-13/+206
|
* Issue #4863, removing remaining bitsTarek Ziadé2009-01-252-18/+0
|
* Fixed #4863: removed distutils.mwerkscompilerTarek Ziadé2009-01-253-251/+2
|
* Fixed compile error on windows.Hirokazu Yamamoto2009-01-251-1/+1
|
* fix building the core with --disable-unicodeBenjamin Peterson2009-01-257-22/+70
| | | | | I changed some bytearray methods to use strings instead of unicode like bytes_repr Also, bytearray.fromhex() can take strings as well as unicode