summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Straighten out the exec*() function descriptions a bit, and clarify a fewFred Drake2001-10-181-65/+68
| | | | points in the spawn*() description.
* Bump version number.Fred Drake2001-10-181-4/+3
| | | | Remove inconsistent use of HTMLDIR.
* Bump release information.Fred Drake2001-10-181-2/+2
|
* Fix typo reported by Michael Soulier.Fred Drake2001-10-181-1/+1
|
* Function descriptions must end as well as start!Fred Drake2001-10-181-0/+1
|
* Elaborate on types and meaning of the setgroups arguments.Martin v. Löwis2001-10-181-2/+4
|
* Expose setgroups. Fixes feature request #468116.Martin v. Löwis2001-10-181-0/+7
|
* SF bug [#471111] inspect.getframeinfo() needs docs.Tim Peters2001-10-161-0/+6
| | | | TeX-ified its docstring.
* Partial patch from SF #452266, by Jason Petrone.Guido van Rossum2001-10-161-5/+4
| | | | | | This changes Pythread_start_thread() to return the thread ID, or -1 for an error. (It's technically an incompatible API change, but I doubt anyone calls it.)
* [ #403753 ] zlib decompress; uncontrollable memory usageJeremy Hylton2001-10-161-2/+16
| | | | | | | | | | | | | Mostly by Toby Dickenson and Titus Brown. Add an optional argument to a decompression object's decompress() method. The argument specifies the maximum length of the return value. If the uncompressed data exceeds this length, the excess data is stored as the unconsumed_tail attribute. (Not to be confused with unused_data, which is a separate issue.) Difference from SF patch: Default value for unconsumed_tail is "" rather than None. It's simpler if the attribute is always a string.
* Document required return values -1, 0, 1 for tp_compare handler, asGuido van Rossum2001-10-161-2/+11
| | | | suggested in SF patch #424475. Also document exception return.
* Update the description of PyTrace_EXCEPT.Fred Drake2001-10-161-5/+8
|
* Fix a few usage and style-guide conformance issues.Fred Drake2001-10-161-10/+10
|
* Added information about setprofile() and settrace() hooks being thread-Fred Drake2001-10-161-2/+9
| | | | | specific, and updated some of the comments about the profile hook. This closes SF bug #471725.
* Fix thinko in a comment about seeking with a file object.Fred Drake2001-10-161-1/+1
| | | | Reported by Francesco Trentini.
* Added notes to clarify that binascii.crc32(), zlib.crc32(), andFred Drake2001-10-152-3/+9
| | | | zlib.adler32() are not suitable as general hash functions.
* Added documentation for the functions listed in marshal.h.Fred Drake2001-10-141-0/+80
| | | | Prompted by Jim Ahlstrom. This closes SF patch #470614.
* Add entries for the newly split C API manual.Fred Drake2001-10-121-1/+12
|
* Break the Python/C API manual into smaller files by chapter. This manualFred Drake2001-10-1211-6136/+6171
| | | | | | | | has grown beyond what font-lock will work with using the default (X)Emacs settings. Indentation of the description has been made consistent, and a number of smaller markup adjustments have been made as well.
* Document that keyfile and certfile are now optional.Jeremy Hylton2001-10-111-1/+1
| | | | XXX Forgot to mention this in the last socketmodule.c checkin.
* Describe the HeaderParser class.Barry Warsaw2001-10-111-0/+11
|
* A copy-and-paste job forget the "paste" half.Tim Peters2001-10-091-1/+1
|
* Allow the profiler's calibration constant to be specified in the constructorTim Peters2001-10-091-52/+32
| | | | | | | | call, or via setting an instance or class vrbl. Rewrote the calibration docs. Modern boxes are so friggin' fast, and a profiler event does so much work anyway, that the cost of looking up an instance vrbl (the bias constant) per profile event just isn't a big deal.
* Fix minor cut-and-paste typo.Barry Warsaw2001-10-091-1/+1
|
* Update the documentation for the isinstance() function to reflect recentFred Drake2001-10-091-221/+226
| | | | | changes in the implementation. Indented all descriptions consistently.
* Add documentation for the MIMEAudio class/module, contributed byBarry Warsaw2001-10-091-0/+26
| | | | Anthony Baxter.
* Improve the documentation for the os.P_* constants used with the os.spawn*()Fred Drake2001-10-091-9/+29
| | | | | | | | | | functions to include information about how they affect the operation of those functions when used as the "mode" parameter. This closes SF bug #468384. Added warnings to the os.tempnam() and os.tmpnam() functions regarding their security problem. These warning mirror the warnings added to the runtime by Skip Montanaro.
* New markup: \note{...} and \warning{...}Fred Drake2001-10-094-0/+36
|
* Note that the values for Boolean options are case-insensitive.Fred Drake2001-10-091-2/+3
|
* Update the description of getboolean() to reflect the changes made byFred Drake2001-10-081-3/+5
| | | | SF patch #467580.
* Remove code and docs for the OldProfile and HotProfile classes: codeTim Peters2001-10-071-170/+23
| | | | | hasn't worked in years, docs were wrong, and they aren't interesting anymore regardless.
* Update the documentation to reflect the changes to ReferenceError.Fred Drake2001-10-062-1/+13
|
* Add documentation for the public API for weak reference objects.Fred Drake2001-10-051-1/+70
|
* A regexp example was rendered asTim Peters2001-10-051-1/+1
| | | | | | | | | | foo\d when it was clearly intended to render as foo$ Fred, is this a right way to fix it? If not, the earlier place in the same paragraph that does render as foo$ is also wrong.
* Remove some long-unsupported Mac OS modules.Fred Drake2001-10-055-425/+0
| | | | This closes SF patch #460737.
* Add chroot call. Implements feature #459267.Martin v. Löwis2001-10-041-0/+6
|
* Update a couple of old addresses that point to CNRI.Fred Drake2001-10-042-9/+11
|
* Make clear that tuple() accepts the same kind of arguments as list().Tim Peters2001-10-041-1/+3
|
* Expand the documentation of the low-level tracing/profiling interface.Fred Drake2001-10-031-2/+23
| | | | This reflects what is currently in CVS, which may change before 2.2 is final.
* CVS patch [#466628] Doc changes for doctest patch (#466616), fromTim Peters2001-10-021-25/+2
| | | | Tim Hochberg. Doctest no longer searches imported objects.
* Fredrik tells me the truefalse parameter for boolean() is not part of theFred Drake2001-10-011-5/+3
| | | | public interface, so we can simplify the documentation.
* Removed stray backslash (a typo -- my fault).Tim Peters2001-10-011-1/+1
|
* The description of dictionary comparison was out of date. Rather thanTim Peters2001-10-011-9/+12
| | | | | | try to explain the complex general scheme we actually use now, I decided to spell out only what equality means (which is easy to explain and intuitive), leaving the other outcomes unspecified beyond consistency.
* "boolean" --> "Boolean" (per the style guide).Fred Drake2001-10-014-5/+5
|
* Fix some minor style-guide conformance bugs.Fred Drake2001-10-011-7/+8
|
* Straighten out some markup.Fred Drake2001-10-011-3/+4
| | | | "boolean" --> "Boolean" (per the style guide).
* Refer to the objects which define __len__(), __*item__(), and __iter__()Fred Drake2001-10-011-17/+35
| | | | | | as container objects rather than as mapping objects (in the index entries). Change the section heading and intro sentence to be a little more general, since that's how things have actually evolved.
* Clarify comments about mailbox objects being iterable.Fred Drake2001-10-011-2/+3
|
* Docs for SF patch #462628Guido van Rossum2001-10-011-2/+8
|
* Patch #462122: add readline startup and pre_event hooks.Martin v. Löwis2001-09-301-0/+16
|