Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Some minor clarifications for find()'s arguments based on SF bug | Barry Warsaw | 2001-10-18 | 1 | -5/+6 |
| | | | | #463572. Closing. | ||||
* | Straighten out the exec*() function descriptions a bit, and clarify a few | Fred Drake | 2001-10-18 | 1 | -65/+68 |
| | | | | points in the spawn*() description. | ||||
* | Function descriptions must end as well as start! | Fred Drake | 2001-10-18 | 1 | -0/+1 |
| | |||||
* | Elaborate on types and meaning of the setgroups arguments. | Martin v. Löwis | 2001-10-18 | 1 | -2/+4 |
| | |||||
* | Expose setgroups. Fixes feature request #468116. | Martin v. Löwis | 2001-10-18 | 1 | -0/+7 |
| | |||||
* | SF bug [#471111] inspect.getframeinfo() needs docs. | Tim Peters | 2001-10-16 | 1 | -0/+6 |
| | | | | TeX-ified its docstring. | ||||
* | Partial patch from SF #452266, by Jason Petrone. | Guido van Rossum | 2001-10-16 | 1 | -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 usage | Jeremy Hylton | 2001-10-16 | 1 | -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. | ||||
* | Fix a few usage and style-guide conformance issues. | Fred Drake | 2001-10-16 | 1 | -10/+10 |
| | |||||
* | Added information about setprofile() and settrace() hooks being thread- | Fred Drake | 2001-10-16 | 1 | -2/+9 |
| | | | | | specific, and updated some of the comments about the profile hook. This closes SF bug #471725. | ||||
* | Added notes to clarify that binascii.crc32(), zlib.crc32(), and | Fred Drake | 2001-10-15 | 2 | -3/+9 |
| | | | | zlib.adler32() are not suitable as general hash functions. | ||||
* | Document that keyfile and certfile are now optional. | Jeremy Hylton | 2001-10-11 | 1 | -1/+1 |
| | | | | XXX Forgot to mention this in the last socketmodule.c checkin. | ||||
* | Describe the HeaderParser class. | Barry Warsaw | 2001-10-11 | 1 | -0/+11 |
| | |||||
* | A copy-and-paste job forget the "paste" half. | Tim Peters | 2001-10-09 | 1 | -1/+1 |
| | |||||
* | Allow the profiler's calibration constant to be specified in the constructor | Tim Peters | 2001-10-09 | 1 | -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 Warsaw | 2001-10-09 | 1 | -1/+1 |
| | |||||
* | Update the documentation for the isinstance() function to reflect recent | Fred Drake | 2001-10-09 | 1 | -221/+226 |
| | | | | | changes in the implementation. Indented all descriptions consistently. | ||||
* | Add documentation for the MIMEAudio class/module, contributed by | Barry Warsaw | 2001-10-09 | 1 | -0/+26 |
| | | | | Anthony Baxter. | ||||
* | Improve the documentation for the os.P_* constants used with the os.spawn*() | Fred Drake | 2001-10-09 | 1 | -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. | ||||
* | Note that the values for Boolean options are case-insensitive. | Fred Drake | 2001-10-09 | 1 | -2/+3 |
| | |||||
* | Update the description of getboolean() to reflect the changes made by | Fred Drake | 2001-10-08 | 1 | -3/+5 |
| | | | | SF patch #467580. | ||||
* | Remove code and docs for the OldProfile and HotProfile classes: code | Tim Peters | 2001-10-07 | 1 | -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 Drake | 2001-10-06 | 2 | -1/+13 |
| | |||||
* | A regexp example was rendered as | Tim Peters | 2001-10-05 | 1 | -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. | ||||
* | Add chroot call. Implements feature #459267. | Martin v. Löwis | 2001-10-04 | 1 | -0/+6 |
| | |||||
* | Update a couple of old addresses that point to CNRI. | Fred Drake | 2001-10-04 | 2 | -9/+11 |
| | |||||
* | Make clear that tuple() accepts the same kind of arguments as list(). | Tim Peters | 2001-10-04 | 1 | -1/+3 |
| | |||||
* | CVS patch [#466628] Doc changes for doctest patch (#466616), from | Tim Peters | 2001-10-02 | 1 | -25/+2 |
| | | | | Tim Hochberg. Doctest no longer searches imported objects. | ||||
* | Fredrik tells me the truefalse parameter for boolean() is not part of the | Fred Drake | 2001-10-01 | 1 | -5/+3 |
| | | | | public interface, so we can simplify the documentation. | ||||
* | "boolean" --> "Boolean" (per the style guide). | Fred Drake | 2001-10-01 | 4 | -5/+5 |
| | |||||
* | Straighten out some markup. | Fred Drake | 2001-10-01 | 1 | -3/+4 |
| | | | | "boolean" --> "Boolean" (per the style guide). | ||||
* | Clarify comments about mailbox objects being iterable. | Fred Drake | 2001-10-01 | 1 | -2/+3 |
| | |||||
* | Docs for SF patch #462628 | Guido van Rossum | 2001-10-01 | 1 | -2/+8 |
| | |||||
* | Patch #462122: add readline startup and pre_event hooks. | Martin v. Löwis | 2001-09-30 | 1 | -0/+16 |
| | |||||
* | Patch #462190, patch #464070: Support quoted printable in the binascii module. | Martin v. Löwis | 2001-09-30 | 2 | -7/+33 |
| | | | | Decode and encode underscores for header style encoding. Fixes bug #463996. | ||||
* | The execfile() docs imply it acts on locals same as exec. But in truth | Tim Peters | 2001-09-30 | 1 | -0/+7 |
| | | | | | it acts more like assigning to keys in locals(), i.e. modifications to function locals aren't reflected in the locals when execfile() returns. | ||||
* | Correct docs for long(float). | Tim Peters | 2001-09-30 | 1 | -2/+1 |
| | |||||
* | Fix two typos in the text about compile(), and add two caveats from | Guido van Rossum | 2001-09-29 | 1 | -2/+9 |
| | | | | | recent user feedback: you must end the input with \n and you must use \n, not \r\n to represent line endings. | ||||
* | forgot to mark use of StringType and UnicodeType in the text. | Skip Montanaro | 2001-09-29 | 1 | -2/+3 |
| | |||||
* | added description of StringTypes object | Skip Montanaro | 2001-09-29 | 1 | -0/+5 |
| | |||||
* | Minor markup improvement. | Fred Drake | 2001-09-29 | 1 | -2/+2 |
| | |||||
* | The list.sort() docs require a function that returns -1, 0 or +1. That's | Tim Peters | 2001-09-29 | 1 | -1/+1 |
| | | | | | never been true, and in particular implies cmp() can't be used(!). Get closer to the truth. | ||||
* | Move XML-RPC-related docs to the "Internet Protocols" chapter. | Fred Drake | 2001-09-28 | 1 | -1/+2 |
| | | | | Add entry for the SimpleXMLRPCServer module. | ||||
* | Preliminary documentation for the SimpleXMLRPCServer module. | Fred Drake | 2001-09-28 | 1 | -0/+69 |
| | |||||
* | Use consistent version annotations instead of something ad hoc. | Fred Drake | 2001-09-28 | 1 | -4/+7 |
| | |||||
* | Added note about non-support of UNC paths on Windows. | Fred Drake | 2001-09-28 | 2 | -1/+6 |
| | | | | This fixes SF bug #465447. | ||||
* | State that encode() and encodestring() append a newline to the input data | Fred Drake | 2001-09-28 | 1 | -2/+7 |
| | | | | | if it does not already end with a newline. This fixes SF bug #463330. | ||||
* | Add entries for the email and compiler packages. | Fred Drake | 2001-09-27 | 1 | -0/+10 |
| | |||||
* | Markup adjustments. | Fred Drake | 2001-09-27 | 1 | -4/+5 |
| | |||||
* | Migrate the compiler documentation from the Tools/compiler/doc/ directory. | Fred Drake | 2001-09-27 | 2 | -0/+589 |
| | | | | Changes made to make it work in the new location. |