summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #4317: Fix an Array Bounds Read in imageop.rgb2rgb8.Amaury Forgeot d'Arc2008-11-181-0/+2
| | | | Will backport to 2.4.
* when __getattr__ is a descriptor, call it correctly; fixes #4230Benjamin Peterson2008-11-171-0/+2
| | | | patch from Ziga Seilnacht
* The docs for httplib.HTTPConnection.putheader() have claimed for quite a whileBrett Cannon2008-11-151-0/+3
| | | | | that their could be an arbitrary number of values passed in. Turns out the code did not match that. The code now matches the docs.
* Issue #1656675: Register a drop handler for .py* files on Windows.Martin v. Löwis2008-11-071-0/+2
|
* Issue #4120: Exclude manifest from extension modules in VS2008.Martin v. Löwis2008-11-061-0/+2
|
* Issue #4204: Fixed module build errors on FreeBSD 4.Martin v. Löwis2008-11-041-0/+2
|
* Issue #3774: Fixed an error when create a Tkinter menu item without commandHirokazu Yamamoto2008-11-031-0/+3
| | | | and then remove it. Written by Guilherme Polo (gpolo).
* #4048 make the parser module accept relative imports as validBenjamin Peterson2008-11-032-0/+3
|
* make sure the parser flags and passed onto the compilerBenjamin Peterson2008-10-311-0/+3
| | | | | This fixes "from __future__ import unicode_literals" in an exec statment See #4225
* Issue #4176: Pickle would crash the interpreter when a __reduce__ functionAmaury Forgeot d'Arc2008-10-301-0/+3
| | | | | | | | | does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) A list is not an iterator... Will backport to 2.6 and 2.5.
* Fixed a modulefinder crash on certain relative imports.Thomas Heller2008-10-301-0/+2
|
* fix __future__ imports when multiple features are givenBenjamin Peterson2008-10-261-0/+3
|
* Typo fix.Georg Brandl2008-10-251-1/+1
|
* give a py3k warning when 'nonlocal' is used as a variable nameBenjamin Peterson2008-10-251-0/+3
|
* fix #4150: pdb's up command didn't work for generators in post-mortemBenjamin Peterson2008-10-221-0/+3
|
* add NEWs note for last changeBenjamin Peterson2008-10-211-0/+3
|
* Issue #4091: Install pythonxy.dll in system32 again.Martin v. Löwis2008-10-171-0/+2
|
* #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:Amaury Forgeot d'Arc2008-10-141-0/+6
| | | | | | compilation fails with "undefined reference to _Py_ascii_whitespace" Will backport to 2.6.
* Issue #4018: Disable "for me" installations on Vista.Martin v. Löwis2008-10-131-0/+2
|
* On windows, os.chdir given unicode was not working if GetCurrentDirectoryWHirokazu Yamamoto2008-10-091-0/+4
| | | | | returned a path longer than MAX_PATH. (But It's doubtful this code path is really executed because I cannot move to such directory on win2k)
* #3935: properly support list subclasses in the C impl. of bisect.Georg Brandl2008-10-081-0/+2
| | | | Patch reviewed by Raymond.
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as ↵Amaury Forgeot d'Arc2008-10-071-0/+5
| | | | | | | | the missing key. Now it correctly refers to the initial otherset. Reviewed by Raymond. Will backport to 2.6.
* Add the 'patchcheck' build target to .PHONY.Brett Cannon2008-10-061-0/+5
| | | | Re-closes issue 3758. Thanks to Ralph Corderoy for the catch.
* Issue #4014: Don't claim that Python has an Alpha release status, in additionMartin v. Löwis2008-10-061-0/+3
| | | | to claiming it is Mature.
* Update the version to 2.7. Hopefully this fixes the test_distutils failureNeal Norwitz2008-10-031-1/+1
|
* Bump to 2.7a0Barry Warsaw2008-10-021-0/+12
|
* Bumping to 2.6 final.Barry Warsaw2008-10-012-2/+2
|
* Bug #3989: Package the 2to3 script (as 2to3.py) in the WindowsMartin v. Löwis2008-10-011-0/+3
| | | | installer.
* Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs whenGregory P. Smith2008-09-301-0/+3
| | | | | | | calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation.
* fix security issue 2: imageop's poor validation of arguments could result in ↵Benjamin Peterson2008-09-301-0/+3
| | | | | | | segfaults patch by Victor Stinner reviewed by myself and Brett
* Issue #3965: Allow repeated calls to turtle.Screen, by making it aMartin v. Löwis2008-09-291-0/+3
| | | | | | true singleton object. Reviewed by Gregor Lingl.
* The _lsprof module could crash the interpreter if it was given an externalBrett Cannon2008-09-291-0/+4
| | | | | | | | timer that did not return a float and a timer was still running when the Profiler object was garbage collected. Fixes issue 3895. Code review by Benjamin Peterson.
* bsddb4.7.3pre9 renamed to 4.7.3Jesus Cea2008-09-281-1/+1
|
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-261-0/+3
| | | | | | | | For example: "".count("xxxx", sys.maxint, 0) Reviewed by Benjamin Peterson. Will port to 2.5 and 3.0.
* #3965: on Windows, open() crashes if the filename or the mode is invalid,Amaury Forgeot d'Arc2008-09-251-0/+3
| | | | | | and if the filename is a unicode string. Reviewed by Martin von Loewis.
* add a NEWs entry for r66614Benjamin Peterson2008-09-251-0/+2
|
* Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.Martin v. Löwis2008-09-251-0/+2
|
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-241-0/+3
| | | | Reviewed by Fredrik Lundh and Skip Montanaro.
* #3879 fix a regression in urllib.getproxies_environmentBenjamin Peterson2008-09-211-0/+2
| | | | reviewers: Benjamin, Georg
* Bug #3887: Package x64 version of CRT for AMD64Martin v. Löwis2008-09-191-0/+5
| | | | Windows binaries.
* done with 2.6rc2Barry Warsaw2008-09-181-0/+12
|
* Bumping to 2.6rc2v2.6rc2Barry Warsaw2008-09-182-2/+2
|
* fix possible integer overflows in _hashopenssl #3886Benjamin Peterson2008-09-181-2/+5
|
* Issue #3617: Include a licensing statement regarding the Microsoft C runtime ↵Martin v. Löwis2008-09-141-0/+6
| | | | in the Windows installer.
* Issue #3850: Misc/find_recursionlimit.py was broken.Antoine Pitrou2008-09-132-8/+27
| | | | Reviewed by A.M. Kuchling.
* Issue #3833: Use a different upgrade code for Win64 installers.Martin v. Löwis2008-09-131-0/+2
|
* post release updatesBarry Warsaw2008-09-131-0/+12
|
* Bumping to 2.6rc1Barry Warsaw2008-09-122-2/+2
|
* Issue #3846: Release GIL during calls to sqlite3_prepare. This improves ↵Gerhard Häring2008-09-121-0/+4
| | | | concurrent access to the same database file from multiple threads/processes.
* Fixes issue #3103. In the sqlite3 module, made one more function static. All ↵Gerhard Häring2008-09-121-0/+3
| | | | renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.