summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r213'.v2.1.3cvs2svn2002-04-091-0/+1
|
* Weasle-word the SSL-on-Windows blurb.Tim Peters2002-04-091-1/+5
|
* re-adding the NEWS entry. SF ate my previous commit.Anthony Baxter2002-04-091-0/+1
|
* backport 1.47's "add sendall() to FakeSocket class"Anthony Baxter2002-04-091-0/+3
|
* Change license text to refer to 2.1.3.Tim Peters2002-04-081-10/+10
|
* Change 2.1.3 release date.Tim Peters2002-04-081-1/+1
|
* SF bug 497854: Short-cuts missing for All Users.Tim Peters2002-04-082-10/+24
| | | | Fixing a Windows-specific installer glitch.
* Talk about uncoordinated dance partners!Fred Drake2002-04-081-1/+1
| | | | Fixed the release date to match the source release.
* Add news about zlib 1.1.4 for the Windows installer.Tim Peters2002-04-081-1/+6
|
* Begin the Release Dance.Fred Drake2002-04-082-3/+3
|
* Update Windows installer identification and resource strings for 2.1.3.Tim Peters2002-04-081-4/+4
|
* Change 2.1.3 Windows build to use zlib 1.1.4.Tim Peters2002-04-081-6/+6
|
* Change the 2.1.3 Windows buildno (#35).Tim Peters2002-04-081-2/+2
|
* Update 2.1.3 Windows buildno.Tim Peters2002-04-081-0/+2
|
* backport fred'sAnthony Baxter2002-04-080-0/+0
| | | | | | revision 1.2.2.1 Python 10 was a success, commemorate it\! This includes Guido's whitespace cleanup.
* beginning the dance of the sugar-plum micro-release.Anthony Baxter2002-04-083-5/+5
|
* Do not call "knee" a standard module.Fred Drake2002-04-081-3/+1
| | | | This addresses the issue in SF bug #515745.
* #457466: "popenx() argument mangling hangs python" [Win9x only]Anthony Baxter2002-04-081-0/+4
|
* Backport of bugAnthony Baxter2002-04-082-5/+59
| | | | | | 457466: "popenx() argument mangling hangs python" [Win9x only]." Can't test this myself, but MarkH sez it's ok.
* This commit was manufactured by cvs2svn to create branchcvs2svn2002-04-083-0/+67
| | | | 'release21-maint'.
* Add note about changes in xml.sax.expatreader.Fred Drake2002-04-041-0/+6
|
* Not sure why the regression test missed this, but the PyXML tests caught it.Fred Drake2002-04-041-1/+1
| | | | We should get attributes from the right object.
* Mark the notice about the new development version of the docs as not needingFred Drake2002-04-041-0/+1
| | | | to be archived. Most of these are pretty bland. ;-)
* Avoid creating circular references between the ExpatParser and theFred Drake2002-04-041-1/+38
| | | | | | | ContentHandler. While GC will eventually clean up, it can take longer than normal for applications that create a lot of strings (or other immutables) rather without creating many containers. This closes SF bug #535474.
* Back-port Neal Norwitz's patch:Fred Drake2002-04-041-1/+1
| | | | | | libarray.tex 1.31.8.2 SF 539024, Fix broken link to numpy
* Add the PyObject_As*Buffer() functions that apply, now that the docs have beenFred Drake2002-04-041-0/+37
| | | | corrected and I'm dealing with them anyway.
* Update the PEP URL format to point to python.org.Fred Drake2002-04-031-1/+1
| | | | (This affects exactly one link on the release21-maint branch.)
* There is no PyArg_ConvertTuple(); call it by the right name.Fred Drake2002-04-011-1/+1
| | | | This closes SF bug #537511.
* Update to push the docs to python.org instead of python.sf.net.Fred Drake2002-04-012-9/+12
|
* backport gvanrossum's checkin ofMartin v. Löwis2002-04-011-1/+1
| | | | | | | | revision 2.40 of mpzmodule.c SF patch 517245 by Marc Recht. Support GMP version >= 2.
* News for SF #535905.Guido van Rossum2002-03-291-0/+13
|
* Sort-of backport to 2.1.3 (if we ever release it) of the following.Guido van Rossum2002-03-284-4/+6
| | | | | | | | | | | | | (The fix looks different, but does the same thing to the 2.1 GC code that Neil's patch does to the 2.2 GC code.) This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). The fix makes it possible to call PyObject_GC_UnTrack() more than once on the same object, and then move the PyObject_GC_UnTrack() call to *before* the trashcan code is invoked. BUGFIX CANDIDATE!
* Backport for 2.1.3 (if we ever release it; we may have to becauseGuido van Rossum2002-03-281-2/+10
| | | | | | | | | | | | | | | | this is what Zope 2 will be using in the foreseeable future). Fix an issue that was reported in but unrelated to the main problem of SF bug 535905 (Evil Trashcan and GC interaction). The SETLOCAL() macro should not DECREF the local variable in-place and then store the new value; it should copy the old value to a temporary value, then store the new value, and then DECREF the temporary value. This is because it is possible that during the DECREF the frame is accessed by other code (e.g. a __del__ method or gc.collect()) and the variable would be pointing to already-freed memory. BUGFIX CANDIDATE!
* Fix stupid typo in example.Fred Drake2002-03-161-1/+1
|
* Clarify the descriptions of the positive and negative lookbehind assertions.Fred Drake2002-03-161-9/+30
| | | | | Added examples of positive lookbehind assertions. This closes SF bug #529708.
* Add a test that was added in Python 2.2: test Weak*Dictionary.setdefault().Fred Drake2002-03-131-0/+25
| | | | | The purpose is to avoid regression on SF bug #529273. This test is stronger than the one submitted with the bug report.
* Fix SF bug #529273: WeakValueDictionary.setdefault() raised UnboundLocalErrorFred Drake2002-03-131-4/+3
| | | | | since it used the name of a global function as the name of a local. The patch is almost identical to that submitted with the bug report.
* Change the way \textasciitilde is implemented so it works more consistentlyFred Drake2002-03-131-1/+1
| | | | | (dropping tildes into data that still goes through LaTeX-like processing is a bad idea).
* Add a note that Py_None needs the same reference count treatment as anyFred Drake2002-03-121-1/+2
| | | | | other PyObject *. This closes SF bug #494007.
* "level" keyword argument in example should be "stacklevel".Fred Drake2002-03-121-1/+1
| | | | This closes SF bug #517684.
* Add more explanation of how data_files is used (esp. where the files end upFred Drake2002-03-081-2/+13
| | | | in the installation and how that location is determined).
* "Shortcut" should be "short-circuit".Fred Drake2002-03-081-6/+7
| | | | This closes SF bug #526277.
* Backport (if there's ever a 2.1.3 release) of a useful trunk fix:Guido van Rossum2002-02-251-0/+1
| | | | | Fix by Edward K Ream to make breakpoints work on Windows: insert a missing call to self.canonic().
* Typo: thsi -> this. Closes SF bug #521450.Fred Drake2002-02-221-1/+1
|
* Add an availability statement for alarm().Fred Drake2002-02-151-0/+1
|
* Consistently use \textasciicircum to produce a ^ character.Fred Drake2002-02-141-17/+23
| | | | LaTeX really falls flat on this one!
* In case there ever will be a 2.1.3, this fixes SF bug #514928 (BastianGuido van Rossum2002-02-081-1/+1
| | | | | | | | | | Kleineidam): curses error in w.border(). For some reason, in 2.1.2 and before, PyCursesWindow_Border is declared as METH_VARARGS but calls PyArg_Parse(), which is wrong. (This is not relevant for 2.2, which does this completely different and makes all functions METH_VARARGS.)
* Update the instructions on reporting bugs to reflect that anonymous reportsFred Drake2002-02-041-10/+6
| | | | are no longer accepted.
* string.split() docstring described the interpretation of the maxsplitFred Drake2002-01-301-3/+3
| | | | | argument incorrectly. This closes SF bug #505997.
* Add keyword.kwlist to the public API.Fred Drake2002-01-241-1/+8
|