summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'r221'.v2.2.1cvs2svn2002-04-091-0/+1
|
* Updates from Sean Reifschneider.Michael W. Hudson2002-04-094-71/+46
|
* Replace "Digital Creations" with Zope Corporation in one place.Fred Drake2002-04-081-1/+4
| | | | Update the table of releases.
* Update table of releases.Tim Peters2002-04-081-0/+2
|
* This may well be my final checkin before 2.2.1.Michael W. Hudson2002-04-081-5/+5
| | | | | | | | | | | | If you think I've forgotten something, now is a good time to howl (although I won't read the howl for a good few hours 'cause I'm going home). backport lemburg's checkin of revision 2.158 of pythonrun.c Move Unicode finalization further down in the chain. Fixes bug #525620.
* Add bool(), True, False (as ints) for backwards compatibility.Guido van Rossum2002-04-082-1/+28
|
* Do not call "knee" a standard module.Fred Drake2002-04-081-3/+1
| | | | This addresses the issue in SF bug #515745.
* SF bug 538827: Python open w/ MSVC6: bad error msgs.Tim Peters2002-04-081-1/+14
| | | | | | | open_the_file: Some (not all) flavors of Windows set errno to EINVAL when passed a syntactically invalid filename. Python turned that into an incomprehensible complaint about the mode string. Fixed by special-casing MSVC.
* - A type can now inherit its metatype from its base type. Previously,Guido van Rossum2002-04-082-6/+11
| | | | | | when PyType_Ready() was called, if ob_type was found to be NULL, it was always set to &PyType_Type; now it is set to base->ob_type, where base is tp_base, defaulting to &PyObject_Type.
* File used for 2.2.1 distribution, unless disaster strikes in next 24 hours.Jack Jansen2002-04-071-1/+1
|
* Files used for 2.2.1 release (unless disaster strikes in the next 24 hours).Jack Jansen2002-04-072-0/+4
|
* Some more news. (There's also a fix to _localemodule.c that I don'tGuido van Rossum2002-04-051-0/+4
| | | | | dare describe, and of course lots of jiggling of the docs and the Windows installer metadata.)
* Backport half a patch from the trunk. This inherits tp_is_gc from aGuido van Rossum2002-04-052-0/+5
| | | | base class.
* backport gvanrossum's checkin ofMichael W. Hudson2002-04-051-0/+8
| | | | | | | | | revision 1.126 of test_descr.py SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() broken w/ classmethods. Bugfix candidate.
* backport gvanrossum's checkin ofMichael W. Hudson2002-04-051-3/+7
| | | | | | | | | revision 2.133 of typeobject.c SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() broken w/ classmethods. Bugfix candidate.
* backport fdrake's checkin ofMichael W. Hudson2002-04-051-4/+5
| | | | | | | | | | revision 1.4 of test_commands.py Make test_commands work on more systems. This removes much of the dependency on how a system is configured. This closes SF bug #497160 (which has the patch) and #460613. Bugfix candidate.
* Backport both bits of Guido's fix for bug #503031.Michael W. Hudson2002-04-051-1/+5
|
* backport loewis' checkin ofMichael W. Hudson2002-04-051-1/+1
| | | | | | | revision 1.6 of turtle.py Patch #536117: Typo in turtle.py. 2.2.2 candidate.
* backport loewis' checkin ofMichael W. Hudson2002-04-051-1/+4
| | | | | | | revision 2.28 of _localemodule.c Don't imply XPG4 constants from CODESET presence. Fixes #534153. 2.2.2 candiate.
* Change Windows installer strings and resources for 2.2.1 final.Tim Peters2002-04-041-4/+4
|
* Fiddle Windows build number for 2.2.1 final.Tim Peters2002-04-041-2/+2
|
* Update patch level and Windows build number for 2.2.1 final.Tim Peters2002-04-042-3/+5
|
* Add note about changes in xml.sax.expatreader.Fred Drake2002-04-041-0/+6
|
* SF bug 497854: Short-cuts missing for All Users.Tim Peters2002-04-042-12/+19
| | | | Fixing a Windows-specific installer glitch.
* 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.
* SF 539024, Fix broken link to numpyNeal Norwitz2002-04-041-1/+1
|
* Correct the descriptions of the PyObject_As*Buffer() return values.Fred Drake2002-04-041-6/+6
| | | | This closes SF bug #539081.
* Add another output directory to the ignored list.Fred Drake2002-04-041-0/+1
|
* The body of_PyObject_GC_UnTrack() should only be compiled #ifdefGuido van Rossum2002-04-031-0/+2
| | | | | WITH_CYCLE_GC. (Neil pointed this out before the weekend, and I fixed it right away, but forgot to check it in.)
* Update the PEP URL format to point to python.org.Fred Drake2002-04-031-1/+1
|
* Explain that os.spawn*() return the process handle on Windows.Fred Drake2002-04-011-1/+2
| | | | This closes SF bug #537582.
* There is no PyArg_ConvertTuple(); call it by the right name.Fred Drake2002-04-011-1/+1
| | | | This closes SF bug #537511.
* Fix up the documentation of the type codes to give both the C and PythonFred Drake2002-04-011-14/+23
| | | | | | | | | types for each code, and give the actual C types. Document the support for slice operations (back-ported from the trunk) and note when some TypeError exceptions are raised. This closes SF bugs 518767 and 536469.
* Prepare for next release.Fred Drake2002-04-011-3/+3
|
* Update to push the docs to python.org instead of python.sf.net.Fred Drake2002-04-012-9/+12
|
* Update from trunk:Fred Drake2002-04-011-9/+16
| | | | | | - make \url force horizontal mode (so it works at the start of a line) - make \verbatiminput produce results that look like a verbatim environment
* Backport changes to integrate AMK's "What's New in Python X.Y"Fred Drake2002-04-012-18/+67
| | | | | document. This incorporates the integration of several checkins from the trunk.
* Preparing for the next release.Fred Drake2002-03-291-1/+1
|
* This commit was manufactured by cvs2svn to create tag 'r22p1'.v2.2cvs2svn2002-03-291-0/+1
|
* Set version info for the emergency "Don't Kill Opera" documentationFred Drake2002-03-292-3/+3
| | | | release.
* Backport to 2.2.1:Guido van Rossum2002-03-291-1/+1
| | | | | | | | | | 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!
* News for SF #535905.Guido van Rossum2002-03-291-0/+13
|
* Backport of a new test to check the interaction between cyclic GCTim Peters2002-03-281-0/+29
| | | | and the trashcan mechanism.
* Backport to 2.2.1:Guido van Rossum2002-03-285-5/+7
| | | | | | | | | | 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 to 2.2.1.Guido van Rossum2002-03-281-2/+10
| | | | | | | | | | | | | | 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!
* Add documentation on the hasfree data object.Fred Drake2002-03-281-0/+4
|
* Backport Skip's patch for SF bug #534495:Fred Drake2002-03-271-1/+2
| | | | | | | exceptions.tex 1.5 fix a typo in PyErr_Format table and add row for 'p' format char closes bug 534495
* Files used for 2.2.1c2 distribution.Jack Jansen2002-03-265-2/+4
|