summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences()Guido van Rossum2003-04-151-3/+6
| | | | | | | | | | | | | | | | | | | even farther down, to just before the call to _PyObject_DebugMallocStats(). This required the following changes: - pystate.c, PyThreadState_GetDict(): changed not to raise an exception or issue a fatal error when no current thread state is available, but simply return NULL without raising an exception (ever). - object.c, Py_ReprEnter(): when PyThreadState_GetDict() returns NULL, don't raise an exception but return 0. This means that when printing a container that's recursive, printing will go on and on and on. But that shouldn't happen in the case we care about (see first bullet). - Updated Misc/NEWS and Doc/api/init.tex to reflect changes to PyThreadState_GetDict() definition.
* - list.insert(i, x) now interprets negative i as it would beGuido van Rossum2003-04-141-4/+5
| | | | | | interpreted by slicing, so negative values count from the end of the list. This was the only place where such an interpretation was not placed on a list index.
* Add a nameAndrew M. Kuchling2003-04-141-1/+2
|
* Typo fixAndrew M. Kuchling2003-04-141-1/+1
|
* Mention timeit moduleAndrew M. Kuchling2003-04-131-34/+54
| | | | | | | | | | Fix error in description of logging package's 'propagate' Mention default arg to dict.pop() Link to more module docs (I wonder if I should adopt some convention such as linking the first mention of all new modules to the LibRef?) Various text changes Bump version number and Python version
* Use simpler importAndrew M. Kuchling2003-04-131-1/+1
|
* Back out of setting the default charset to iso-8859-1.Barry Warsaw2003-04-111-1/+1
|
* Fix markupNeal Norwitz2003-04-111-1/+1
|
* From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.htmlBarry Warsaw2003-04-111-8/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Expose NullTranslations and GNUTranslations to __all__ - Set the default charset to iso-8859-1. It used to be None, which would cause problems with .ugettext() if the file had no charset parameter. Arguably, the po/mo file would be broken, but I still think iso-8859-1 is a reasonable default. - Add a "coerce" default argument to GNUTranslations's constructor. The reason for this is that in Zope, we want all msgids and msgstrs to be Unicode. For the latter, we could use .ugettext() but there isn't currently a mechanism for Unicode-ifying msgids. The plan then is that the charset parameter specifies the encoding for both the msgids and msgstrs, and both are decoded to Unicode when read. For example, we might encode po files with utf-8. I think the GNU gettext tools don't care. Since this could potentially break code [*] that wants to use the encoded interface .gettext(), the constructor flag is added, defaulting to False. Most code I suspect will want to set this to True and use .ugettext(). - A few other minor changes from the Zope project, including asserting that a zero-length msgid must have a Project-ID-Version header for it to be counted as the metadata record.
* Moved all the scripting stuff to a separate section, added all theJack Jansen2003-04-118-40/+397
| | | | | missing bits (well, all the bits I could think of) and updated the rest.
* Attempt to make all the various string *strip methods the same.Neal Norwitz2003-04-101-0/+6
| | | | | | | | | | | * Doc - add doc for when functions were added * UserString * string object methods * string module functions 'chars' is used for the last parameter everywhere. These changes will be backported, since part of the changes have already been made, but they were inconsistent.
* Add a space after expression to be consistentNeal Norwitz2003-04-101-1/+1
|
* Minor markup adjustments.Fred Drake2003-04-091-3/+2
|
* Try to discourage use of PyObject_Type().Guido van Rossum2003-04-091-0/+5
|
* Re-indent example; fix typoAndrew M. Kuchling2003-04-091-4/+4
|
* Created a minimal MacOSX section.Jack Jansen2003-04-091-92/+176
|
* Lots of small markup adjustments.Fred Drake2003-04-092-113/+118
|
* Add dependency information for the hotshot package docs.Fred Drake2003-04-091-0/+1
|
* extra punctuation removedAnthony Baxter2003-04-091-1/+1
|
* Add dependency information for the timeit module docs.Fred Drake2003-04-091-0/+1
|
* + libtimeitSkip Montanaro2003-04-091-0/+1
|
* doc for timeit module/script - mostly just a recast of Tim's docstringSkip Montanaro2003-04-091-0/+184
|
* Added example of using positional and keyword args with atexit.register().Fred Drake2003-04-081-0/+15
| | | | Based on a suggestion from a reader.
* Markup fix.Fred Drake2003-04-081-2/+2
|
* s/referrents/referents/g. Gotta love that referrers remains rife with rs.Tim Peters2003-04-081-2/+2
|
* Finished implementing gc.get_referrents(): dealt with error and endTim Peters2003-04-081-0/+13
| | | | cases, wrote docs, added a test.
* add note suggested by rhettinger about example.Anthony Baxter2003-04-071-0/+3
|
* patch [ 698505 ] docs for hotshot moduleAnthony Baxter2003-04-072-0/+124
|
* - add the "download_url" field to the pre-2.2.3 metadata compatibility noteFred Drake2003-03-311-26/+26
| | | | - fix some markup nits
* Fix symbol in grammar; this should fix some hyperlinking in the HTMLFred Drake2003-03-311-1/+1
| | | | version.
* Patch #701395: Correct documentation of PyUnicode_Splitlines.Martin v. Löwis2003-03-301-3/+4
|
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-1/+1
|
* PyWeakref_GetObject returns None (not NULL) when the referent is gone.Ka-Ping Yee2003-03-281-1/+1
|
* Replace criterium with criterion. Fixes #705120.Martin v. Löwis2003-03-271-4/+4
|
* Back out previous change as discussed on python-checkinsNeal Norwitz2003-03-221-1/+0
|
* Add lib/mimelib.tex to dependenciesNeal Norwitz2003-03-221-0/+1
|
* email is at version 2.5 nowBarry Warsaw2003-03-211-1/+1
|
* Add PEP 307 sectionAndrew M. Kuchling2003-03-211-0/+44
|
* Add PEP305 sectionAndrew M. Kuchling2003-03-211-0/+50
|
* Update datetime section a bitAndrew M. Kuchling2003-03-211-16/+15
|
* Add new CSV module to doc dependanciesNeal Norwitz2003-03-211-0/+1
|
* include csv doc section - Fred, you may want to change the locationSkip Montanaro2003-03-201-0/+1
|
* new CSV file processing module - see PEP 305Skip Montanaro2003-03-201-0/+281
|
* - added example of using a comparison function with list.sort(), andFred Drake2003-03-201-3/+25
| | | | | | explained the construction of a [(key, value), ...] list as an alternative - note that support for cmpfunc=None was added in 2.3
* - apply SF patch #700798: fixes and cleanups for descriptor infoFred Drake2003-03-201-13/+13
| | | | - use a TeX "tie" to prevent word-wrapping in "section x.y"-like text
* add descriptions of {get,set}defaulttimeout.Skip Montanaro2003-03-201-0/+14
|
* - explain what a UNC path is in the makedirs() description, sinceFred Drake2003-03-201-8/+6
| | | | | | they're actually mentioned there - remove some extraneous paragraph separations - \versionadded --> \versionchanged in one place
* Take out my (long since disabled) POSIX signal mask handling code.Michael W. Hudson2003-03-132-54/+6
| | | | | I'm not going to have the time or energy to get this working x-platform -- anyone who does is welcome to the code!
* SF bug #699237: Tutorial uses omitted slice indices before explaining themRaymond Hettinger2003-03-121-11/+11
| | | | Moved up the explanation of slice default arguments.
* Update the package version numberBarry Warsaw2003-03-121-2/+2
|