summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [Bug #810879] Document that copyfile() can fail if you don't have ↵Andrew M. Kuchling2004-05-051-3/+5
| | | | permissions; also, fix a double negative.
* Fix small grammatical mistake.Brett Cannon2004-05-051-1/+1
|
* Nits:Raymond Hettinger2004-05-051-16/+9
| | | | | | | - Neatened the braces in PyList_New(). - Made sure "indexerr" was initialized to NULL. - Factored if blocks in PyList_Append(). - Made sure "allocated" is initialized in list_init().
* SF patch #947476: Apply freelist technique to listsRaymond Hettinger2004-05-052-4/+20
| | | | | Re-use list object bodies. Saves calls to malloc() and free() for faster list instantiation and deallocation.
* add an index entry for __getnewargs__()Fred Drake2004-05-051-0/+2
|
* - note that __getinitargs__() is only for old-style classesFred Drake2004-05-051-2/+17
| | | | | - describe __getnewargs__() (closes SF bug #873246)
* Remove list of pickle protocol names used by the copy module; thereFred Drake2004-05-051-5/+1
| | | | | | | are enough subtleties to pickling that we don't want misunderstanding to spread because we don't provide all the information twice. The reference to the pickle module for information will have to suffice; at least only one portion of the docs will be out of date. ;-(
* note that the error code for socket.gaierror will be one of the EAI_*Fred Drake2004-05-051-0/+2
| | | | | constants (closes SF bug #837929)
* SF #814606: merge from release23-maint branch: clarify/cleanupGreg Ward2004-05-051-25/+27
| | | | mixer docs; trim \platform{}, add \versionadded{}.
* Removed 'U' from the documentation for Py_BuildValue to bring it in lineNicholas Bastin2004-05-041-3/+0
| | | | | with the elimination of 'U' in modsupport.c on 2000/04/28 (replaced with 'u' and 'u#' per fdrake's comments).
* Document readline module functions added in Python 2.3. See:Phillip J. Eby2004-05-041-0/+16
| | | | | | http://mail.python.org/pipermail/python-dev/2003-September/037922.html for background. It appears I forgot to ever submit a bug report or patch.
* Using reversed() is not compatible with Python 1.5.2.Guido van Rossum2004-05-041-1/+1
|
* Replace str.find()!=1 with the more readable "in" operator.Raymond Hettinger2004-05-047-9/+9
|
* Testing for None should be done with 'is'Raymond Hettinger2004-05-041-1/+1
|
* Stacks based on lists work better and read more clearly when theyRaymond Hettinger2004-05-041-8/+7
| | | | grow and shrink on the right.
* Fix [ 947405 ] os.utime() raises bad exception for unicode filenamesMark Hammond2004-05-041-1/+6
|
* Do not use the default namespace for attributes.Martin v. Löwis2004-05-022-16/+26
| | | | | Fixes http://bugs.debian.org/229885 Will backport to 2.3.
* Minor documentation nits.Raymond Hettinger2004-05-011-11/+29
|
* Add an example application to the docs.Raymond Hettinger2004-04-301-2/+31
|
* the headers in an HTTP request are HTTP headers, not MIME headersFred Drake2004-04-291-2/+2
|
* Add a test script for the colorsys module.Walter Dörwald2004-04-281-0/+76
|
* remove out-of-date count of the functions in winsoundFred Drake2004-04-281-1/+1
|
* fix typo reported in a long-buried emailFred Drake2004-04-281-1/+1
|
* The filename of this module changed again...Thomas Heller2004-04-271-1/+1
|
* Complete perky's name change patch.Raymond Hettinger2004-04-271-1/+1
|
* Fix a bug I introduced which causes all block openers at an indent levelKurt B. Kaiser2004-04-261-1/+1
| | | | to be shown, instead of outdenting each level.
* Correct the file name of _heapq module.Hye-Shik Chang2004-04-251-0/+0
|
* 1. Add an Options menu entry: Code ContextKurt B. Kaiser2004-04-243-27/+43
| | | | | | | | | | 2. Add a <<toggle-code-context>> envent to the [CodeContext] section of config-extensions.def and also a default-on variable, set to 0. 3. Update the help file to include Code Context. M CodeContext.py M config-extensions.def M help.txt
* 1. Polish variables in EditorWindow extension loading and Tkinter variable code.Kurt B. Kaiser2004-04-243-27/+33
| | | | | | | | | | | 2. Add exception handling to EditorWindow Tkinter variable setvar() and getvar() fcns. 3. EditorWindow: remove some unneeded comments. 4. Add a separator to the Options menu 5. extend.txt: describe how to create a menu entry which has no keybinding. M Bindings.py M EditorWindow.py M extend.txt
* SF bug #940579: section 5.10: 'not' returns boolean, not intRaymond Hettinger2004-04-231-4/+4
|
* Remove the Modules/heaqmodule.c, and add Modules/_heapmodule.c, soThomas Heller2004-04-221-4/+4
| | | | that the project compiles again with VC6.
* Forgot to mention the SF number, and that Bob Ippolito provided the patch.Thomas Heller2004-04-221-1/+2
|
* Two new public API functions, Py_IncRef and Py_DecRef. Useful forThomas Heller2004-04-224-0/+28
| | | | dynamic embedders of Python.
* cvs ignore the user options files *.suoThomas Heller2004-04-221-0/+1
|
* Modules/heapqmodule.c removed.Thomas Heller2004-04-221-19/+3
| | | | Modules/_heapmodule.c added.
* - New Extension: CodeContext. Provides block structuring hints for codeKurt B. Kaiser2004-04-213-3/+144
| | | | | | | | which has scrolled above an edit window. Patch 936169 Noam Raphael. A CodeContext.py M NEWS.txt M config-extensions.def
* SF #926075: Fixed the bug that returns a wrong pattern object forHye-Shik Chang2004-04-201-0/+8
| | | | | a string or unicode object in sre.compile() when a different type pattern with the same value exists.
* SF #926075: Fixed the bug that returns a wrong pattern object forHye-Shik Chang2004-04-202-2/+7
| | | | | a string or unicode object in sre.compile() when a different type pattern with the same value exists.
* * Restore the pure python version of heapq.py.Raymond Hettinger2004-04-191-364/+0
| | | | * Mark the C version as private and only use when available.
* * Restore the pure python version of heapq.py.Raymond Hettinger2004-04-194-3/+628
| | | | * Mark the C version as private and only use when available.
* Special case normalization of empty strings. Fixes #924361.Martin v. Löwis2004-04-172-0/+8
| | | | Backported to 2.3.
* SF bug #936827: PyNumber_And() 's descriptionRaymond Hettinger2004-04-171-1/+1
| | | | Fix typo.
* The wininst-6.exe template binary for bdist_wininst is now linkedThomas Heller2004-04-161-2/+2
| | | | with zlib-1.2.1.
* The wininst-7.1.exe template binary for bdist_wininst is now linkedThomas Heller2004-04-161-5/+5
| | | | | | with zlib-1.2.1. UPX needs the --force flag to be able to compress it.
* really scream out that people should use the file objects instead ofFred Drake2004-04-161-7/+19
| | | | file descriptor operations for normal applications
* Open file in universal newline mode when passing to compile(). SolutionSkip Montanaro2004-04-161-1/+1
| | | | from Felix Wiemann. Closes patch #934971.
* bring description of optional and keyword args for DictReader and DictWriterSkip Montanaro2004-04-161-6/+8
| | | | | classes into line with the actual code. I didn't see any obvious examples of latex formatting for *args and **kwds so I just guessed.
* delete timing output - it appears after the </html> line.Skip Montanaro2004-04-161-3/+0
|
* Minor reformatting.Thomas Heller2004-04-151-4/+5
|
* remove bogus markup that caused the docs to be wrongFred Drake2004-04-151-1/+1
|