summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Note that True and False are pickable objectsRaymond Hettinger2002-08-051-1/+1
|
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-041-5/+39
|
* Remove a syntax error in the example, spotted by Walter Hofman.Steve Holden2002-08-041-1/+1
|
* Add two remindersAndrew M. Kuchling2002-08-041-0/+4
|
* Document new heapreplace() function.Tim Peters2002-08-031-0/+9
|
* Document new heapify() function.Tim Peters2002-08-031-5/+12
|
* Minor markup changes.Fred Drake2002-08-021-3/+4
|
* Add a comment showing how one of the macros should be used.Fred Drake2002-08-021-0/+1
|
* Add heapq module docs to the dependency information.Fred Drake2002-08-021-0/+1
|
* Add docs for heapq.py.Guido van Rossum2002-08-022-0/+165
|
* indicate that 'b' is added to the mode flag if not givenSkip Montanaro2002-08-021-2/+2
|
* Added new footnote about list.sort() stability. Repaired footnote aboutTim Peters2002-08-011-4/+12
| | | | | | | | | | using sort() with comparison functions (it made reference to the non- existent "builtin-in function sort()"). BTW, I changed list.sort's docstring to contain the word "stable" -- the easiest way to tell whether a particular Python version's sort *is* stable is to look for "stable" in the docstring. I'm not sure whether to advertise this <wink>.
* Replace DL_EXPORT with PyMODINIT_FUNCMark Hammond2002-07-311-1/+1
|
* SF patch #581414: info reader bugFred Drake2002-07-301-1/+3
| | | | | | | | The "Matching vs. Searching" Info node is unreachable from the Info program (but is fine in Emacs's Info mode). This patch seems to fix it. This is the only occurrence where the info reader fails, so probably it could be addressed in the python docs as a workaround. Forwarded the report to the info maintainer.
* New functions for extension writers on Windows:Thomas Heller2002-07-291-0/+16
| | | | | | | | | | PyErr_SetExcFromWindowsErr(), PyErr_SetExcFromWindowsErrWithFilename(). Similar to PyErr_SetFromWindowsErrWithFilename() and PyErr_SetFromWindowsErr(), but they allow to specify the exception type to raise. Available on Windows. See SF patch #576458.
* Add posix.lchown()Andrew M. Kuchling2002-07-281-2/+1
|
* Patch #573770: Implement lchown.Martin v. Löwis2002-07-281-0/+7
|
* Fix SF bug 587012, doc mentions inexistent builtin unistrNeal Norwitz2002-07-281-2/+2
|
* Small clarifications when referring to the sys.exc_* variables so thatFred Drake2002-07-251-15/+15
| | | | | | readers are not given the wrong impression that they should be using those on a regualar basis. This closes SF bug #585598.
* Flesh out description of getlogin() and recommend against using it.Jeremy Hylton2002-07-241-2/+3
|
* [Bug #580462] Mention changes to GC APIAndrew M. Kuchling2002-07-221-84/+116
| | | | | Mention portable strptime() Move C-level sections farther down in the file
* Sort changed modules into alphabetical order; no other changesAndrew M. Kuchling2002-07-221-93/+97
|
* Rewrite a paragraph, and use correct mark-upAndrew M. Kuchling2002-07-221-5/+9
|
* SF bug #583894, add doc for DL_IMPORT/DL_EXPORT deprecationNeal Norwitz2002-07-221-0/+5
|
* add versionadded to docNeal Norwitz2002-07-201-0/+3
|
* Doc patch from SF 474274 (pure Python strptime by Brett Cannon).Guido van Rossum2002-07-191-7/+0
|
* Substantially flesh out extended slice section. I think this is probablyMichael W. Hudson2002-07-191-0/+83
| | | | done now.
* A few days ago, Guido said (in the thread "[Python-Dev] PythonMichael W. Hudson2002-07-191-0/+9
| | | | | | | | version of PySlice_GetIndicesEx"): > OK. Michael, if you want to check in indices(), go ahead. Then I did what was needed, but didn't check it in. Here it is.
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-5/+8
|
* Added documentation for the buffer_text and related attributes of theFred Drake2002-07-171-0/+23
| | | | xmlparser object provided by pyexpat, new in Python 2.3.
* Change staticforward and statichere to just use static.Fred Drake2002-07-171-2/+2
| | | | Removed ^M from some line-ends.
* Remove now-obsolete staticforward/statichere discussion.Fred Drake2002-07-171-10/+2
|
* reduce(): Clarified what is returned in the case of a sequence 1 item long andFred Drake2002-07-171-6/+6
| | | | initial/default value.
* Record the decision that StopIteration is a sink state (see recentGuido van Rossum2002-07-161-0/+7
| | | | | | discussion in python-dev with subject "Termination of two-arg iter()"). Implementation will follow.
* Clarify that the description of sys.path[0] is only valid upon programGuido van Rossum2002-07-151-2/+5
| | | | start-up.
* Add more itemsAndrew M. Kuchling2002-07-121-13/+46
| | | | | Use \cfunction instead of \function in various places Add contributor names
* Clarify the return value of __nonzero__(): It *must* be an integer.Fred Drake2002-07-121-3/+3
| | | | Closes SF bug #579991.
* Make another pass through Misc/NEWS and add stuff.Andrew M. Kuchling2002-07-111-15/+64
| | | | Bump version number.
* Add some itemsAndrew M. Kuchling2002-07-111-113/+159
| | | | | Expand the "Other Language Changes" section Rewrite various passages.
* [Bug #567607] Suggest METH_NOARGS to replace PyArg_NoArgsAndrew M. Kuchling2002-07-111-5/+9
|
* Document gc.get_objects().Fred Drake2002-07-101-0/+6
| | | | Closes SF bug #578308.
* Note that unicode() can raise LookupError for unknown codecs.Fred Drake2002-07-091-1/+2
| | | | Closes SF bug #513666.
* Remove unused variable.Fred Drake2002-07-091-1/+0
|
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | more trivial lexical helper macros so that uses of these guys expand to nothing at all when they're not enabled. This should help sub- standard compilers that can't do a good job of optimizing away the previous "(void)0" expressions. Py_DECREF: There's only one definition of this now. Yay! That was that last one in the family defined multiple times in an #ifdef maze. Py_FatalError(): Changed the char* signature to const char*. _Py_NegativeRefcount(): New helper function for the Py_REF_DEBUG expansion of Py_DECREF. Calling an external function cuts down on the volume of generated code. The previous inline expansion of abort() didn't work as intended on Windows (the program often kept going, and the error msg scrolled off the screen unseen). _Py_NegativeRefcount calls Py_FatalError instead, which captures our best knowledge of how to abort effectively across platforms.
* Fix typo reported by Kent Engström, and a bunch of broken markup.Fred Drake2002-07-081-11/+11
|
* Fix typo: "an Unicode string" --> "a Unicode string"Fred Drake2002-07-081-2/+2
| | | | Clarify the return value when the parameter is a Unicode object.
* Fixed a typo and updated information about using the Times fonts whenFred Drake2002-07-081-4/+5
| | | | formatting PostScript documents. Reported by Dave Kuhlman.
* Added font-setting line (and associated comments) to the A4 version ofFred Drake2002-07-081-0/+12
| | | | | | | | this file; the lack of this was causing the A4 version of tutorial to use really bad Type 3 fonts instead of Type 1 fonts, which also bloated the file size substantially. I thought there was a SourceForge bug for this, but couldn't find it.
* Fix a typo.Thomas Heller2002-07-041-1/+1
|
* Revise asyncore documentation and document asynchat for the first time.Steve Holden2002-07-034-55/+347
|