summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* - correct patch numberMatthias Klose2006-04-031-1/+1
|
* - Patch #360466: Replace the MD5 implementation from RSA Data Security IncMatthias Klose2006-04-031-0/+3
| | | | with the implementation from http://sourceforge.net/projects/libmd5-rfc/.
* preparation for 2.5a1Anthony Baxter2006-04-032-5/+8
|
* Bug #1421664: Set sys.stderr.encodingMartin v. Löwis2006-04-031-0/+3
|
* The email module's parsedate_tz function now sets the daylight savingsAnthony Baxter2006-04-032-0/+5
| | | | | | flag to -1 (unknown) since it can't tell from the date whether it should be set. patch from Aldo Cortesi
* Accept keyword arguments for __import__ and doc the addition of the level ↵Neal Norwitz2006-04-031-0/+2
| | | | param from PEP 328.
* Patch #624325: urlparse.urlparse() and urlparse.urlsplit() resultsFred Drake2006-04-011-0/+3
| | | | now sport attributes that provide access to the parts of the result.
* Some typo & grammar fixesAndrew M. Kuchling2006-04-011-12/+12
|
* Update SQLite version requirement.Georg Brandl2006-04-011-1/+1
|
* patch #1462498: handle entityrefs in attribute values.Georg Brandl2006-04-011-0/+3
|
* Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar,Walter Dörwald2006-04-011-1/+3
| | | | | that output localized month and weekday names and can cope with encodings.
* merged the sqlite-integration branch.Anthony Baxter2006-04-011-0/+5
| | | | | | | This is based on pysqlite2.1.3, and provides a DB-API interface in the standard library. You'll need sqlite 3.2.2 or later to build this - if you have an earlier version, the C extension module will not be built.
* Another crack at bug #1460340: make random.sample(dict)Tim Peters2006-04-011-0/+5
| | | | work, this time by ugly brute force.
* Patch #1460496: round() now accepts keyword arguments.Georg Brandl2006-03-311-0/+2
|
* Bug #1445068: getpass.getpass() can now be given an explicit streamGeorg Brandl2006-03-311-0/+3
| | | | argument to specify where to write the prompt.
* Patch #1462313, bug #1443328: the pickle modules now can handle classesGeorg Brandl2006-03-311-0/+3
| | | | that have __private names in their __slots__.
* Patch #1380952: fix SSL objects timing out on consecutive read()sGeorg Brandl2006-03-311-0/+2
|
* Bug #1250170, Patch #1462230: handle socket.gethostname()Georg Brandl2006-03-311-0/+3
| | | | failures gracefully
* Bug #947906: An object oriented interface has been added to the calendarWalter Dörwald2006-03-311-0/+4
| | | | | module. It's possible to generate HTML calendar now and the module can be called as a script (e.g. via ``python -mcalendar``).
* Add a NEWS entry for the Alpha fixesNeal Norwitz2006-03-311-0/+3
|
* Fixed bug #1459029 - unicode reprs were double-escaped.Anthony Baxter2006-03-301-0/+2
| | | | Backed out an old patch from 2000.
* Oops, forgot to checkin the NEWS for --identityPhillip J. Eby2006-03-301-0/+3
|
* Revert r43399.Georg Brandl2006-03-281-6/+0
|
* Bug #1459963: urllib2 now normalizes HTTP header names correctlyGeorg Brandl2006-03-281-0/+6
| | | | with title().
* Mention patch id for the CJK part of the patch andWalter Dörwald2006-03-271-5/+6
| | | | the name of the two new C functions.
* Years in the making.Tim Peters2006-03-261-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | objimpl.h, pymem.h: Stop mapping PyMem_{Del, DEL} and PyMem_{Free, FREE} to PyObject_{Free, FREE} in a release build. They're aliases for the system free() now. _subprocess.c/sp_handle_dealloc(): Since the memory was originally obtained via PyObject_NEW, it must be released via PyObject_FREE (or _DEL). pythonrun.c, tokenizer.c, parsermodule.c: I lost count of the number of PyObject vs PyMem mismatches in these -- it's like the specific function called at each site was picked at random, sometimes even with memory obtained via PyMem getting released via PyObject. Changed most to use PyObject uniformly, since the blobs allocated are predictably small in most cases, and obmalloc is generally faster than system mallocs then. If extension modules in real life prove as sloppy as Python's front end, we'll have to revert the objimpl.h + pymem.h part of this patch. Note that no problems will show up in a debug build (all calls still go thru obmalloc then). Problems will show up only in a release build, most likely segfaults.
* SF Patch #1455676: Simplify using Queues with daemon consumer threadsRaymond Hettinger2006-03-241-0/+4
| | | | | Adds join() and task_done() methods to track when all enqueued tasks have been gotten and fully processed by daemon consumer threads.
* Preserve command name, for later printing of activeMartin v. Löwis2006-03-231-0/+2
| | | | | commands. If there are active commands when the tests start, fail, printing these commands.
* Patch #1396919: Reenable the system scope threads on FreeBSD 5.4Hye-Shik Chang2006-03-231-0/+3
| | | | | and later versions because they bumped the default setting to get our basic tests to run correctly..
* Forward port MvL's fix in 43227:Neal Norwitz2006-03-231-0/+3
| | | | | Fix crash when a Unicode string containing an encoding declaration is compile()d. Fixes #1115379.
* ctypes was added.Thomas Heller2006-03-221-0/+2
|
* Change NEWS entry for recent socket API changeGeorg Brandl2006-03-221-1/+1
|
* News about email 4.0.Barry Warsaw2006-03-221-0/+8
|
* remove test fileBarry Warsaw2006-03-211-1/+0
|
* py trunk svn testBarry Warsaw2006-03-211-1/+1
|
* py trunk svn testBarry Warsaw2006-03-211-1/+1
|
* py trunk svn testBarry Warsaw2006-03-211-0/+1
|
* moved older releases into HISTORYAnthony Baxter2006-03-202-5287/+5287
|
* Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. ↵Neal Norwitz2006-03-202-0/+3
| | | | | | | | Schroeder. This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase).
* SF [ 1231053 ] audioop - alaw encoding/decoding added, code updatedAnthony Baxter2006-03-201-0/+3
| | | | | | | | | This patch adds a-LAW encoding to audioop and replaces the old u-LAW encoding/decoding code with the current code from sox. Possible issues: the code from sox uses int16_t. Code by Lars Immisch
* Previously, Python code had no easy way to access the contents of aGeorg Brandl2006-03-181-0/+4
| | | | | cell object. Now, a ``cell_contents`` attribute has been added (closes patch #1170323).
* RFE #567972: Socket objects' family, type and proto properties areGeorg Brandl2006-03-171-0/+3
| | | | now exposed via new get...() methods.
* Update/expand on comments about leaking tests.Neal Norwitz2006-03-171-4/+5
|
* Ignore ctypes leaks, but add a test case so we do not forget.Neal Norwitz2006-03-171-1/+1
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-163-6/+8
|
* Add a news entry about the sre/re swap.Neal Norwitz2006-03-161-0/+3
|
* Merge the tim-obmalloc branch to the trunk.Tim Peters2006-03-161-0/+12
| | | | | | | This is a heavily altered derivative of SF patch 1123430, Evan Jones's heroic effort to make obmalloc return unused arenas to the system free(), with some heuristic strategies to make it more likley that arenas eventually _can_ be freed.
* Document the other change from patch #1359365.Walter Dörwald2006-03-151-2/+4
|
* SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueErrorWalter Dörwald2006-03-151-0/+3
| | | | now if close() has been called before (like file and StringIO.StringIO do)
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-0/+6
| | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.