summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5170: Fixed Unicode output bug in logging and added test case. This ↵Vinay Sajip2009-02-081-3/+6
| | | | is a regression which did not occur in 2.5.
* Issue #4512 closeout: Make ZipImport.get_filename() a public methodNick Coghlan2009-02-081-0/+3
|
* Mention patch submitter in NEWS entry for r69419Nick Coghlan2009-02-081-1/+2
|
* Issue 4195: Restore the ability to execute packages with the -m switch (but ↵Nick Coghlan2009-02-082-0/+5
| | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
* Issue #999042: The Python compiler now handles explict global statementsNeil Schemenauer2009-02-071-0/+3
| | | | | correctly (should be assigned using STORE_GLOBAL opcode). This was done by having the system table differentiate between explict and implicit globals.
* Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that willGuilherme Polo2009-02-061-3/+4
| | | | | | not be used again (this requires Tcl/Tk 8.3.1), also fix a memory leak in Tkapp_Call when calling from a thread different than the one that created the Tcl interpreter.
* Partial fix to issue #1731706: memory leak in Tkapp_Call when callingGuilherme Polo2009-02-061-0/+4
| | | | from a thread different than the one that created the Tcl interpreter.
* fixed #1520877: now distutils reads Read from the environment/MakefileTarek Ziadé2009-02-061-0/+3
|
* Implement issue #4285, convert sys.version_info to a namedEric Smith2009-02-061-0/+3
| | | | tuple. Patch by Ross Light.
* Fixed #1276768: verbose option was not used in the code.Tarek Ziadé2009-02-061-0/+3
|
* Fixed #5132: enable extensions to link on SolarisTarek Ziadé2009-02-051-0/+3
|
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-0/+4
|
* NEWS entry for issue #1581476Guilherme Polo2009-02-021-0/+2
|
* Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows.Martin v. Löwis2009-02-021-0/+2
|
* - Issue #5104: The socket module now raises OverflowError when 16-bit port andGregory P. Smith2009-01-311-0/+4
| | | | | protocol numbers are supplied outside the allowed 0-65536 range on bind() and getservbyport().
* Issue #2047: shutil.move() could believe that its destination path wasAntoine Pitrou2009-01-291-0/+4
| | | | | inside its source path if it began with the same letters (e.g. "src" vs. "src.new").
* Issue 4920: Fixed next() vs __next__() issues in the ABCsRaymond Hettinger2009-01-281-0/+3
| | | | | for Iterator and MutableSet. Also added thorough test for required abstractmethods.
* Issue #5083: New 'gui' resource for regrtest.Guilherme Polo2009-01-281-0/+5
|
* Demos for ttk added.Guilherme Polo2009-01-281-0/+2
|
* Added the ttk module. See issue #2983: Ttk support for Tkinter.Guilherme Polo2009-01-281-0/+2
|
* Issue 5021: doctest.testfile should set __name__Raymond Hettinger2009-01-271-0/+3
|
* Promote combinations_with_replacement() from a recipe to a regular itertool.Raymond Hettinger2009-01-271-1/+2
|
* Backport importlib in the form of providing importlib.import_module(). This hasBrett Cannon2009-01-261-0/+3
| | | | 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-251-0/+3
|
* Promote compress() from a recipe to being a regular itertool.Raymond Hettinger2009-01-251-0/+2
|
* Fixed #4863: removed distutils.mwerkscompilerTarek Ziadé2009-01-251-0/+2
|
* Properly document multiprocessing's logging support, resolve outstanding ↵Jesse Noller2009-01-252-0/+5
| | | | issues with the custom levels
* Issue #1672332: Fix unpickling of subnormal floats, which was raisingMark Dickinson2009-01-241-0/+3
| | | | | ValueError on some platforms as a result of the platform strtod setting errno on underflow.
* Issue #3881: Help Tcl to load even when started through theMartin v. Löwis2009-01-241-0/+3
| | | | unreadable local symlink to "Program Files" on Vista.
* Issue #4710: Extract directories properly in the zipfile module;Martin v. Löwis2009-01-241-0/+3
| | | | allow adding directories to a zipfile.
* Issue 3807: multiprocessing fails to compile under --without-threadsJesse Noller2009-01-231-0/+4
|
* Issue #5008: When a file is opened in append mode with the new IO library,Antoine Pitrou2009-01-211-0/+5
| | | | | | 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.Vinay Sajip2009-01-201-6/+9
|
* Issue 4998: __slots__ on Fractions was useless.Raymond Hettinger2009-01-201-0/+4
|
* allow unicode keyword arguments for the ** syntax #4978Benjamin Peterson2009-01-201-0/+2
|
* add a note about the ftruncate changeBenjamin Peterson2009-01-191-0/+3
|
* Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check ↵Jesse Noller2009-01-191-0/+4
| | | | handle
* raise an OSError for invalid fds #4991Benjamin Peterson2009-01-191-0/+3
|
* issue 4301: patch logging to add processName, remove the old ↵Jesse Noller2009-01-181-0/+3
| | | | _check_logger_class code
* Resolve issue 4449: AssertionError in mp_benchmarks.pyJesse Noller2009-01-181-0/+3
|
* fix inspect.isclass() on instances with a custom __getattr__ #1225107Benjamin Peterson2009-01-171-0/+3
|
* #3997: zipfiles generated with more than 65536 files could not be openedAmaury Forgeot d'Arc2009-01-171-0/+3
| | | | | | with other applications. Reviewed by Martin, will backport to 2.6 and 3.0
* Another typo fix.Mark Dickinson2009-01-151-1/+1
|
* Issue #4397. Fix occasional test_socket failure on OS X.Mark Dickinson2009-01-151-0/+2
|
* #1162154: inspect.getmembers() now skips attributes that raise AttributeError,Amaury Forgeot d'Arc2009-01-131-1/+4
| | | | e.g. a __slots__ attribute which has not been set.
* #4807: Remove a wrong usage of wsprintf in the winreg moduleAmaury Forgeot d'Arc2009-01-131-0/+2
| | | | | | ("windows sprintf", different than swprintf) Needed for the windows CE port.
* Issue #4935: The overflow checking code in the expandtabs() method commonAntoine Pitrou2009-01-131-0/+4
| | | | | to str, bytes and bytearray could be optimized away by the compiler, letting the interpreter segfault instead of raising an error.
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-121-0/+3
| | | | | | Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
* Issue 1696199: Add collections.Counter().Raymond Hettinger2009-01-121-0/+3
|
* Misc/NEWS for issue 4293Kristján Valur Jónsson2009-01-121-0/+3
|