summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #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.
* sqlite3 module: Mark iterdump() method as "Non-standard" like all the other ↵Gerhard Häring2008-09-121-0/+2
| | | | methods not found in DB-API.
* #3640: Correct a crash in cPickle on 64bit platforms, in the case of deeply ↵Amaury Forgeot d'Arc2008-09-112-0/+22
| | | | | | nested lists or dicts. Reviewed by Martin von Loewis.
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the ↵Nick Coghlan2008-09-111-1/+9
| | | | test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon)
* Issue #3642: Suppress warning in obmalloc when size_t isMartin v. Löwis2008-09-111-3/+2
| | | | larger than uint. Reverts r65975. Reviewed by Brett Cannon.
* #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not forAmaury Forgeot d'Arc2008-09-101-0/+8
| | | | | | | | | PyString_FromFormat which has an independent implementation, and uses "%zd". This makes a difference on win64, where printf needs "%Id" to display 64bit values. For example, queue.__repr__ was incorrect. Reviewed by Martin von Loewis.
* - Issue #3629: Fix sre "bytecode" validator for an end case.Guido van Rossum2008-09-101-0/+2
| | | | Reviewed by Amaury.
* Issue #3811: The Unicode database was updated to 5.1.Martin v. Löwis2008-09-101-0/+2
| | | | Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
* Fix #3634 invalid return value from _weakref.ref(Exception).__init__Benjamin Peterson2008-09-091-0/+3
| | | | Reviewers: Amaury, Antoine, Benjamin
* Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.Vinay Sajip2008-09-091-1/+3
|
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-091-0/+5
| | | | | | | the __long__ slot is allowed to return either int or long, but the behaviour of float objects should not change between 2.5 and 2.6. Reviewed by Benjamin Peterson
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-0/+3
| | | | | | | | WarningsRecorder object. This makes the API simpler to use as no special object must be learned. Closes issue 3781. Review by Benjamin Peterson.
* Issue #2271: Set SecureCustomProperties so that installation will properlyMartin v. Löwis2008-09-081-0/+3
| | | | use the TARGETDIR even for unprivileged users.
* Allow passing the MSI file name to merge.py.Martin v. Löwis2008-09-081-0/+2
|
* - Issue #1204: The configure script now tests for additional librariesGregory P. Smith2008-09-071-0/+4
| | | | | | that may be required when linking against readline. This fixes issues with x86_64 builds on some platforms (at least a few Linux flavors as well as OpenBSD/amd64).
* #3796: A test class was not run in test_float.Amaury Forgeot d'Arc2008-09-061-3/+5
| | | | Reviewed by Benjamin.
* #1638033: add support for httponly on Cookie.MorselBenjamin Peterson2008-09-062-0/+3
| | | | Reviewer: Benjamin
* Issue #3535: zipfile couldn't read some zip files larger than 2GB.Antoine Pitrou2008-09-051-1/+3
| | | | Reviewed by Amaury Forgeot d'Arc.
* GNU coding guidelines say that ``make check`` should verify the build. ThatBrett Cannon2008-09-051-0/+6
| | | | | | | | clashes with what Python's build target did. Rename the target to 'patchcheck' to avoid the culture clash. Closes issue 3758. Reviewed by Benjamin Peterson.
* Deprecate bsddb for removal in Python 3.0.Brett Cannon2008-09-051-0/+2
| | | | | Closes issue 3776. Review by Nick Coghlan.
* Added NEWSHirokazu Yamamoto2008-09-041-0/+3
|
* Issue #3772: Fixed regression problem in StreamHandler.emit().Vinay Sajip2008-09-041-1/+3
|
* test_py3kwarn had been overlooked when test.test_support.catch_warning() wasBrett Cannon2008-09-031-0/+5
| | | | | | | re-implemented to use warnings.catch_warnings() and had its API improved. Closes issue #3768. Code review by Benjamin Peterson.
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-031-0/+4
| | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* Fix issue 3110 - solaris compilation of multiprocessing fails, reviewed by ↵Jesse Noller2008-09-031-0/+3
| | | | pitrou
* Issue #2562: Fix distutils PKG-INFO writing logic to allow havingMarc-André Lemburg2008-09-031-1/+4
| | | | non-ascii characters and Unicode in setup.py meta-data.
* Issue #3726: Allowed spaces in separators in logging configuration files.Vinay Sajip2008-09-031-0/+2
|
* Issue 2975: when compiling multiple extension modules with visual studio 2008Amaury Forgeot d'Arc2008-09-021-0/+4
| | | | | | | | | | from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests.
* Add news item for #3719.Marc-André Lemburg2008-09-021-0/+3
|
* Issue #3708: os.urandom no longer goes into an infinite loop when passed aGregory P. Smith2008-09-021-0/+3
| | | | non-integer floating point number.
* Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on sharedGregory P. Smith2008-09-021-0/+3
| | | | library targets in the Makefile.
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-0/+5
| | | | | | | | | | | catch_warnings(), and clean up the API. While expanding the test suite, a bug was found where a warning about the 'line' argument to showwarning() was not letting functions with '*args' go without a warning. Closes issue 3602. Code review by Benjamin Peterson.
* remove py3k warnings about the threading api; update docsBenjamin Peterson2008-09-011-0/+2
| | | | Reviewer: Benjamin Peterson
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-0/+3
| | | | | | a unicode argument. will backport.