summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* tagging for tomorrows releaseAnthony Baxter2003-10-021-1/+1
|
* doing the dance of the release.Anthony Baxter2003-10-011-1/+1
|
* post 2.3.2c1 newsAnthony Baxter2003-10-011-0/+22
|
* rest doesnt like empty sectionsAnthony Baxter2003-09-301-9/+0
|
* updates for 2.3.2c1Anthony Baxter2003-09-301-1/+1
|
* news for 2.3.2c1Anthony Baxter2003-09-301-23/+5
|
* the release process, like a river, flows ever onwardsAnthony Baxter2003-09-271-0/+36
|
* more updates from SeanAnthony Baxter2003-09-243-51/+12
|
* actually set the dateAnthony Baxter2003-09-231-1/+1
|
* Note from Anthony about Berkely DB 4.2 support.Thomas Heller2003-09-231-0/+7
| | | | Mention which openssl version was used for the windows installer.
* Removed the PendingDeprecation warning from sets.py because it addsRaymond Hettinger2003-09-221-2/+1
| | | | | little value while introducing incompatability with the version being bugfixed.
* RPM spec file updates from Sean Reifschneider.Anthony Baxter2003-09-221-13/+24
|
* Patch #805613: Fix usage of the PTH library.Martin v. Löwis2003-09-201-0/+2
|
* Patch #713645: Fix typo.Martin v. Löwis2003-09-201-0/+2
|
* Patch #793559: Reset __starttext_tag. Fixes #709491.Martin v. Löwis2003-09-201-0/+2
|
* Mention improvement of detection of broken tzset() (patch #762934).Brett Cannon2003-09-191-0/+2
|
* Fix documentation bugs.Raymond Hettinger2003-09-161-0/+3
| | | | | Add support for iterators and other mapping methods. Convert tests to unittest format and expand their coverage.
* Backport: Double-fix of crash in Unicode freelist handling.Jeremy Hylton2003-09-161-0/+5
|
* Fix leak in classobject.c. The leak surfaced on the error exit whenRaymond Hettinger2003-09-161-0/+3
| | | | | hashing a class that does not define __hash__ but does define a comparison.
* Backport Neal's fix for bug #789402 -- a memory leak in fileobject.cRaymond Hettinger2003-09-161-0/+2
|
* Backport leak fix for new code objects.Raymond Hettinger2003-09-161-0/+2
|
* Patch #793021: Implement htmllib.HTMLParser.reset. Fixes #711632.Martin v. Löwis2003-09-121-0/+2
|
* SF #792649: RESET_ERROR is not defined(logging module)Raymond Hettinger2003-09-101-0/+2
|
* Generalize the last change to check for other markup spacing errors.Raymond Hettinger2003-09-081-1/+1
|
* texcheck.py checks for double word errors and \NULL markup.Raymond Hettinger2003-09-081-0/+2
|
* **kwds arg was missing from __init__ for Dict{Reader,Writer} classes.Skip Montanaro2003-09-061-0/+3
|
* SF bug #801342: Bug (documentation or real, your choice) in random.sample.Raymond Hettinger2003-09-051-0/+3
| | | | | | | | | | | | random.sample() uses one of two algorithms depending on the ratio of the sample size to the population size. One of the algorithms accepted any iterable population argument so long as it defined __len__(). The other had a stronger requirement that the population argument be indexable. While it met the documentation specifications which insisted that the population argument be a sequence, it made random.sample() less usable with sets. So, the second algorithm was modified to coerce non-indexable iterables and dictionaries into a tuple before proceeding.
* SF bug #800796: Difference between hash() and __hash__()Raymond Hettinger2003-09-051-0/+2
| | | | slice(5).__hash__() now raises a TypeError.
* Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize().Martin v. Löwis2003-09-041-0/+2
| | | | Fixes #603724.
* Patch #798202: detect redhat9 Tcl/Tk in configure script.Martin v. Löwis2003-09-041-0/+2
|
* Patch #794826: Add __file__ in dynamically loaded modules for multipleMartin v. Löwis2003-09-041-0/+2
| | | | interpreters. Fixes #698282.
* Patch #798145: Return correct information from nl_langinfo(RADIXCHAR).Martin v. Löwis2003-09-041-0/+2
|
* Catch locale.error as well. Fixes #788378.Martin v. Löwis2003-09-031-0/+2
|
* Use de_DE in example, change message for unknown locale. Fixes #797447.Martin v. Löwis2003-09-031-0/+2
|
* NEWS about email package 794466 patch.Barry Warsaw2003-09-031-1/+2
|
* Document the Pynche patch.Barry Warsaw2003-09-031-0/+6
|
* SF bug #453515: filecmp.dircmp case sensitivity bugRaymond Hettinger2003-09-021-0/+3
|
* SF patch #798534: Windows os.popen needlessly gets a reference to tuple ()Raymond Hettinger2003-09-021-0/+2
| | | | | | (Contributed by Andrew Gaul.) Fixes a minor leak.
* SF 798269: bug fix for doctest (sf bug id: 798254Raymond Hettinger2003-09-021-0/+2
| | | | (Contributed by Alexander Belopolsky.)
* * Add news item for the previous bugfixRaymond Hettinger2003-08-301-1/+3
| | | | * Backport itertoolsmodule.c 1.19 to re-sync Py2.3.1 with Py2.4.
* SF bug 797650: Infinite loop in textwrap.pyRaymond Hettinger2003-08-301-0/+3
| | | | | | When the indents were set to longer than the width and long word breaking was enabled, an infinite loop would result because the inner loop did not assure that at least one character was stripped off on every pass.
* SF bug #793826: using itertools.izip to mutate tuplesRaymond Hettinger2003-08-301-0/+3
| | | | Avoid Armin Rigo's dastardly exercise in re-entrancy.
* _strptime.srptime() escaped parentheses in the format string properly.Brett Cannon2003-08-291-0/+3
| | | | Closes bug #796149 .
* SF bug #795506: Wrong handling of string format code for float values.Raymond Hettinger2003-08-271-0/+3
| | | | Added missing support for '%F' as had been documented.
* Describe the fix to the email package.Barry Warsaw2003-08-191-0/+3
|
* Backport improvements to set.py so that the interface will remainRaymond Hettinger2003-08-171-1/+4
| | | | | | | | | | | | | | | | | | consistent across versions. * Relaxed the argument restrictions for non-operator methods. They now allow any iterable instead of requiring a set. This makes the module a little easier to use and paves the way for an efficient C implementation which can take better advantage of iterable arguments while screening out immutables. * Added a PendingDeprecationWarning for Set.update() because it now duplicates Set.union_update() * Adapted the tests and docs to include the above changes. * Added more test coverage including testing identities and checking to make sure non-restartable generators work as arguments.
* Make sets.py compatible with Py2.2Raymond Hettinger2003-08-151-0/+2
|
* Add note of closing of bug #783952.Brett Cannon2003-08-111-0/+4
|
* SF bug #778964: bad seed in python 2.3 randomRaymond Hettinger2003-08-091-0/+3
| | | | | | | The default seed is time.time(). Multiplied by 256 before truncating so that fractional seconds are used. This way, two consequetive calls to random.seed() are much more likely to produce different sequences.
* Add HIDDEN. Fixes #777664.Martin v. Löwis2003-08-091-0/+2
|