summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix docstring in LocaleTime.Brett Cannon2003-08-081-2/+2
|
* Repair refcounting on error return from type_set_bases.Michael W. Hudson2003-08-072-3/+13
| | | | Include a test case that failed for one of my efforts to repair this.
* Fix hyperlinks and one class reference.Fred Drake2003-08-072-3/+3
| | | | Backporting to Python 2.3 branch.
* Release host name memory. Fixes #783312. Will backport to 2.3.Martin v. Löwis2003-08-071-6/+12
|
* Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename.Mark Hammond2003-08-062-1/+3
| | | | Will also check in on the 2.3 branch.
* Remove useless import.Walter Dörwald2003-08-051-1/+1
|
* Check both __div__ and __truediv__ in division tests.Walter Dörwald2003-08-051-1/+9
| | | | (From SF patch #543867)
* Removed deprecated functionsRaymond Hettinger2003-08-051-1/+4
|
* Removed deprecated functionsRaymond Hettinger2003-08-052-61/+2
|
* SF patch #782810: typo in libfuture.texRaymond Hettinger2003-08-051-1/+1
| | | | (Contributed by George Yoshida)
* SF bug #782369: Massive memory leak in array moduleRaymond Hettinger2003-08-051-2/+7
| | | | | | | | Fixed leak caused by switching from PyList_GetItem to PySequence_GetItem. Added missing NULL check. Clarified code by converting an "if" to an "else if". Will backport to 2.3.
* forgot to commit this - note about the signal module SIGRT(MIN,MAX)Anthony Baxter2003-08-051-0/+2
|
* Mention caching and better thread-safety for Lib/_strptime.pyBrett Cannon2003-08-051-0/+4
|
* Patch #781722: Reject AF_INET6 if IPv6 is disabled. Will backport to 2.3.Martin v. Löwis2003-08-051-0/+8
|
* Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3.Martin v. Löwis2003-08-052-3/+19
|
* Correct URL of normalization file. Fixes #781065. Will backport to 2.3.Martin v. Löwis2003-08-051-2/+2
|
* Patch #781126: Fix markup for add_fallback. Will backport to 2.3.Martin v. Löwis2003-08-051-1/+1
|
* Make sure eol_convention is an ASCII string. Fixes #774680.Martin v. Löwis2003-08-051-0/+3
| | | | Will backport to 2.3.
* init_myformat(): None of the "mark" values can be empty strings, orFred Drake2003-08-051-3/+10
| | | | | | | | | | | LaTeX2HTML feels free to remove a surrounding element that contains no other content. Since such an element is typically a named anchor used for hyperlinking, they should not be removed. Unfortunatley, making sure these marks are non-empty is the most direct way of avoiding this behavior. Thanks to Dave Kuhlman for tracking this down; this was some excellent detective work!
* Re-introduce caching of TimeRE and compiled regexes with added thread-safety.Brett Cannon2003-08-052-335/+190
| | | | | | | | | | | | Also remove now unnecessary property attributes for thread safety (no longer have lazy attributes) and code simplicity reasons. Timezone storage has been reworked to be simpler and more flexible. All values in LocaleTime instances are lower-cased. This is all done to simplify the module. The module now assumes nothing beyond the strptime function will be exposed for general use beyond providing functionality for strptime.
* Touch-up to docstrings.Brett Cannon2003-08-051-19/+20
|
* Add note about fileno not being usable as a normal file descriptor in Windows.Brett Cannon2003-08-051-0/+4
|
* better support for well-formed XHTMLFred Drake2003-08-051-4/+4
|
* make the portions of the generated HTML produced by these styles betterFred Drake2003-08-052-73/+87
| | | | conform to XHTML rules.
* Clarified that TypeErrors can be raised by anyRaymond Hettinger2003-08-041-1/+1
| | | | | | function (not just builtins). The issue arose in a thread on comp.lang.python.
* protect against test problems with JythonSkip Montanaro2003-08-031-6/+7
|
* added test for bug 782369Skip Montanaro2003-08-031-0/+9
|
* more extension marshal tests and conversion to unittest - was surprised toSkip Montanaro2003-08-021-39/+183
| | | | see how much of the file was not covered by the build process
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-025-11/+20
| | | | by returning an empty list instead of raising a TypeError.
* To be a good citizen, it should really delete its socket when done.Skip Montanaro2003-08-011-0/+2
|
* add skeletal "what's new" for 2.4a1 and mention a couple python-mode tweaks.Skip Montanaro2003-08-011-0/+42
|
* delete the f1 key binding. py-help-at-point is still available @ C-c C-h.Skip Montanaro2003-08-011-1/+0
|
* make pending-delete/delete-selection mode work with py-electric-colonSkip Montanaro2003-08-011-2/+4
|
* Patch [ 776725 ] add SIGRTMIN, SIGRTMAX to signalmodule.cAnthony Baxter2003-07-311-0/+10
| | | | | Trivial patch, and the alternative is to guess at the right values based on platform...
* tweak to py-fill-paragraph - problem noted by John Lee and correctionSkip Montanaro2003-07-311-1/+1
| | | | submitted by Bernard Herzog. Closes patch 779830.
* Complete move of windows builds to 2.4alphaMark Hammond2003-07-313-10/+10
|
* Everyone knows what Fred meant, but I thought I'd make it official... ;-)Skip Montanaro2003-07-311-2/+2
|
* Generalize the template for the "What's New" document so it's easierFred Drake2003-07-301-0/+149
| | | | | to extract next time without having to remember where in CVS to dig it out.
* there's a new "What's New" for Python 2.4Fred Drake2003-07-301-1/+1
|
* boilerplate to start off "What's New in Python 2.4"Fred Drake2003-07-301-0/+136
|
* Update to the same version info used by the interpreter.Fred Drake2003-07-302-4/+4
|
* Update version number here as well; patchlevel.h is not the only place.Fred Drake2003-07-302-12/+12
|
* Fix typo.Walter Dörwald2003-07-301-1/+1
|
* [Bug #779469] Fix error in example codeAndrew M. Kuchling2003-07-301-2/+3
|
* Bump the trunk to 2.4a0Barry Warsaw2003-07-301-3/+3
|
* update the documentation contact addressFred Drake2003-07-3015-22/+22
|
* - update the documentation contact addressFred Drake2003-07-301-10/+1
| | | | - remove text about the long-moved Mac OS libref chapter
* Get rid of empty sectionsBarry Warsaw2003-07-291-18/+0
|
* SF bug 778400: IDLE hangs when selecting "Edit with IDLE".Tim Peters2003-07-292-4/+9
| | | | | | | | The fix is confined to the Windows installer. Not a bugfix candidate: the need for the new -n switch added here was introduced by moving to the idlefork IDLE (so this change isn't needed or helpful before 2.3).
* Bump version number; record 2.3 release dateAndrew M. Kuchling2003-07-291-3/+3
|