summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Since xmllib is deprecated now, suppress the DeprecationWarning its testTim Peters2002-04-111-1/+5
| | | | module necessarily raises.
* Ignore more deprecation warnings.Tim Peters2002-04-111-4/+6
|
* Stop sucking up xmllib -- it's deprecated.Tim Peters2002-04-111-1/+0
|
* I don't expect test_email_codecs to run on Windows.Tim Peters2002-04-111-0/+1
|
* Added the resource name "all" to enable all of the optional resource uses.Fred Drake2002-04-111-2/+11
| | | | This is nice for use with "make TESTOPTS='-u all' test".
* Document __unicode__. Fixes #541245.Martin v. Löwis2002-04-111-0/+7
|
* Explain octal escapes. Fixes #542226.Martin v. Löwis2002-04-111-5/+3
|
* SF bug 542181: Realloc behaviorTim Peters2002-04-111-12/+16
| | | | | | | | | | | The bug report pointed out a bogosity in the comment block explaining thread safety for arena management. Repaired that comment, repaired a couple others while I was at it, and added an assert. _PyMalloc_DebugRealloc: If this needed to get more memory, but couldn't, it erroneously freed the original memory. Repaired that. This is for 2.3 only (unless we decide to backport the new pymalloc).
* Different .pyc icon - use "paler" colors to better differentiate it from the ↵Mark Hammond2002-04-111-0/+0
| | | | main .py icon. As discussed with Tim (prompted by cl.lpy posting)
* Improve coverage of Objects/weakrefobject.c.Fred Drake2002-04-111-0/+16
|
* Add a nameAndrew M. Kuchling2002-04-101-1/+1
|
* Add deprecation warning to 'pre' moduleAndrew M. Kuchling2002-04-101-0/+6
|
* Remove mention of 'pre' moduleAndrew M. Kuchling2002-04-101-9/+0
| | | | (2.2 bugfix candidate?)
* Remove support for importing 'pre' moduleAndrew M. Kuchling2002-04-101-14/+2
|
* Sync'ing with standalone email package 2.0.1. This adds support forBarry Warsaw2002-04-1020-144/+2210
| | | | | | | | | non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;).
* Bug fix for UTF-8 encoding bug (buffer overrun) #541828.Marc-André Lemburg2002-04-101-39/+46
|
* Document PyType_CheckExact(), PyType_IS_GC().Fred Drake2002-04-101-1/+16
| | | | Update description of PyType_Check().
* Added test case for UTF-8 encoding bug #541828.Marc-André Lemburg2002-04-102-2/+18
|
* Use random instead of whrandomAndrew M. Kuchling2002-04-101-3/+3
|
* Use random module instead of whrandomAndrew M. Kuchling2002-04-101-4/+4
| | | | Move imports to top
* document all the valid encoding valuesSkip Montanaro2002-04-101-1/+4
|
* When adding a name to the table of macros and environments, make sure itFred Drake2002-04-101-1/+4
| | | | | is not already present. If it is, raise an exception, since that should not happen in a well-defined conversion.
* Added support for \csimplemacro and csimplemacrodesc.Fred Drake2002-04-101-0/+6
|
* Add deprecation warnings for modules as documentedNeal Norwitz2002-04-102-0/+9
|
* Add a deprecation warning to reflect the documented deprecation of theFred Drake2002-04-101-0/+5
| | | | whrandom module. (The deprecation was effective in Python 2.1.)
* Started filling in the information about some of the basic types and macrosFred Drake2002-04-091-2/+69
| | | | used to define Python objects.
* Repair 2.2.1 release date.Tim Peters2002-04-091-1/+1
|
* Update to use the new \csimplemacro macroFred Drake2002-04-092-22/+24
|
* Document the \csimplemacro macro and the csimplemacrodesc environment.Fred Drake2002-04-091-0/+20
|
* Add \csimplemacro to parallel the csimplemacrodesc environment.Fred Drake2002-04-091-1/+2
| | | | Fix a typo in the comments for csimplemacrodesc.
* Update docs for bool changes by Guido around April 6Neal Norwitz2002-04-096-16/+16
|
* Update docstring to reflect code change to boolNeal Norwitz2002-04-091-1/+1
|
* is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652]Guido van Rossum2002-04-091-1/+1
|
* Ignore an output directory for intermediates here as well.Fred Drake2002-04-091-0/+1
|
* Fix typo: coverted --> converted. Reported by Francois Pinard.Fred Drake2002-04-091-1/+1
|
* Remove unconditional debugging prints.Thomas Heller2002-04-091-3/+0
|
* Set the warn_dir option to 0 before running the install command.Thomas Heller2002-04-092-0/+2
| | | | | | | This suppresses bogus warnings about modules installed into a directory not in sys.path. Bugfix candidate.
* Fix an obvious bug.Thomas Heller2002-04-091-2/+2
|
* Update the table of releases.Fred Drake2002-04-081-0/+3
|
* Update table of releases.Tim Peters2002-04-081-0/+3
|
* Patch #512005: getrusage() returns struct-like object.Martin v. Löwis2002-04-084-57/+112
|
* Change 2.1.3 release date.Tim Peters2002-04-081-1/+1
|
* Update 2.1.3 Windows buildno.Tim Peters2002-04-081-0/+2
|
* Patch #539392: Invoke setlocale, try opening the file in demo mode.Martin v. Löwis2002-04-081-2/+18
|
* Move Unicode finalization further down in the chain.Marc-André Lemburg2002-04-081-5/+5
| | | | Fixes bug #525620.
* Do not call "knee" a standard module, and point to the new location.Fred Drake2002-04-081-3/+3
| | | | This addresses the issue in SF bug #515745.
* SF bug 538827: Python open w/ MSVC6: bad error msgs.Tim Peters2002-04-081-2/+15
| | | | | | | 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/+13
| | | | | | | | | | 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. - PyType_Ready() accidentally did not inherit tp_is_gc; now it does. Bugfix candidate.
* Move knee.py from Lib/ to Demo/imputil/. Fixes #515745.Martin v. Löwis2002-04-071-0/+0
|
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-0718-94/+96
|