Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document that uu.decode() will always raise a uu.Error if out_file | Barry Warsaw | 2001-08-17 | 1 | -9/+18 |
| | | | | | isn't given, and the file in the uu header already exists. Also add a description of the uu.Error exception class. | ||||
* | Make sure that ampersand escaping is still performed on the contents of | Fred Drake | 2001-08-17 | 1 | -0/+2 |
| | | | | | | | | | local module tables (the lists of modules documented within a chapter, inserted at the beginning of the chapter). If this is not done here, the text is not part of the resulting documents when latex2html does the processing normally. This fixes a little bit more of SF bug #451556. | ||||
* | fix_font(): Instead of using a long if/elsif cluster, use a bloody | Fred Drake | 2001-08-16 | 1 | -23/+16 |
| | | | | | dictionary. Added some entries to the dictionary to fix part of SF bug #451556. | ||||
* | Fix typo reported by Joonas Paalasmaa: dada-->data | Fred Drake | 2001-08-16 | 1 | -1/+1 |
| | |||||
* | Re-write the description of the os.spawn*() functions, and cover the | Fred Drake | 2001-08-16 | 1 | -17/+51 |
| | | | | | | | whole family instead of just two. This closes SF bug #451630. | ||||
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 1 | -0/+62 |
| | |||||
* | A large contribution from Dave Kuhlman describing what each of the slots | Fred Drake | 2001-08-15 | 1 | -6/+385 |
| | | | | | | | | | in the type object is used for, for many of the more commonly used slots. Thanks! (But there is still a lot more to write on this topic.) Markup and organizational changes by your friendly neighborhood documentation czar. | ||||
* | Dave Kuhlman has contributed a nice improvement to the "Defining New Types" | Fred Drake | 2001-08-15 | 1 | -0/+1 |
| | | | | section of the Extending & Embedding manual -- thanks! | ||||
* | Note addition of cleanfuture.py | Andrew M. Kuchling | 2001-08-15 | 1 | -0/+6 |
| | |||||
* | Fix a minor typo and mark an exception name that was missed. | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Add material about the "r" and "u" prefixes for string literals; should | Fred Drake | 2001-08-14 | 1 | -8/+14 |
| | | | | | | | be reviewed for clarity. Work around a bogosity in the HTML version of the escape sequences table conversion. | ||||
* | Added some examples of table markup. | Fred Drake | 2001-08-14 | 1 | -0/+71 |
| | |||||
* | Add information about __floordiv__() and __truediv__() methods for | Fred Drake | 2001-08-14 | 1 | -5/+17 |
| | | | | implementing numeric objects in Python. | ||||
* | Clarify the prompt in an example. | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | | | | This closes SF bug #450633. | ||||
* | Describe the new semantics for setting and deleting a function's | Barry Warsaw | 2001-08-14 | 1 | -10/+5 |
| | | | | | | | | | __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | Add "exceptions" to the list of fundamental modules | Fred Drake | 2001-08-14 | 1 | -3/+3 |
| | | | | | | created by Py_Initialize(). This closes SF bug #450621. | ||||
* | Insert omitted "the". | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Add the smtpd module to the list of undocumented modules; Barry needs to | Fred Drake | 2001-08-14 | 1 | -0/+4 |
| | | | | write the documentation for this module. | ||||
* | David Goodger <dgoodger@atsautomation.com>: | Fred Drake | 2001-08-13 | 1 | -27/+240 |
| | | | | | | | Documentation for difflib/ndiff refactoring: more of the ndiff functionality has been moved to the underlying library (difflib). This closes SF patch #445413. | ||||
* | For the escape() function, added a reference to the quoteattrs() function | Fred Drake | 2001-08-11 | 1 | -17/+22 |
| | | | | | | | | in xml.sax.saxutils, since that is the right function to use for quoting attribute values. This closes SF bug #444707. Cleaned up a variety of other minor markup errors. | ||||
* | Add section on PEP 238 changes | Andrew M. Kuchling | 2001-08-11 | 1 | -10/+84 |
| | | | | Minor grammatical changes, reformattings, and an error fix from Keith Briggs | ||||
* | Add a note that the quoteattr() function is useful for HTML and SGML | Fred Drake | 2001-08-10 | 1 | -0/+2 |
| | | | | attributes as well. | ||||
* | Added documentation for PyDict_Update() and PyDict_Merge(). | Fred Drake | 2001-08-10 | 1 | -1/+19 |
| | |||||
* | Do more to be compatible with Windows/CygWin. Make error messages more | Fred Drake | 2001-08-10 | 1 | -2/+14 |
| | | | | | | informative when a child process dies with an error. This is a variation of parts of SF patch #429611. | ||||
* | Remove the use of the "cat" program. This improves portability to non-Unix | Fred Drake | 2001-08-10 | 1 | -1/+5 |
| | | | | | | platforms. This is part the response to SF patch #429611. | ||||
* | Added this LaTeX style file to the package since not all LaTeX installations | Fred Drake | 2001-08-10 | 1 | -0/+329 |
| | | | | | | | have it, especially on non-Unix platforms. (MikTeX in particular does not have it.) This is part of the response to SF patch #429611. | ||||
* | Added a warning about reference cycles and memory consumption to the | Fred Drake | 2001-08-10 | 1 | -0/+10 |
| | | | | | | section on functions which return stack frames. This closes SF bug #449258. | ||||
* | Usage fix, problem reported by Keith Briggs. | Fred Drake | 2001-08-10 | 1 | -1/+1 |
| | |||||
* | Added documentation for the new rich comparison support. | Fred Drake | 2001-08-10 | 1 | -73/+147 |
| | | | | | | | | | This closes SF patch #428320. Added documentation for the new floordiv() and truediv() functions. This is part of SF bug #449093. Re-organized the listing of functions to get better logical grouping. | ||||
* | Remove the bogus flags parameter from the PyFile_WriteString() signature; | Fred Drake | 2001-08-10 | 1 | -2/+1 |
| | | | | | | it has no such parameter. This closes SF bug #449761. | ||||
* | Expose nl_langinfo through locale where available. | Martin v. Löwis | 2001-08-10 | 1 | -0/+119 |
| | |||||
* | Patch #448474: Add support for tell() and seek() to gzip.GzipFile. | Martin v. Löwis | 2001-08-09 | 1 | -2/+2 |
| | |||||
* | Added documentation for PyNumber_*FloorDivide(), PyNumber_*TrueDivide(), | Fred Drake | 2001-08-08 | 1 | -48/+138 |
| | | | | | | | PyInterpreterState_*Head(), PyInterpreterState_Next(), and PyThreadState_Next(). Wrapped some long lines, added some others. | ||||
* | Reference counting information for PyNumber_*FloorDivide() and | Fred Drake | 2001-08-08 | 1 | -0/+16 |
| | | | | PyNumber_*TrueDivide(). | ||||
* | Add option to push the development docs to SF without announcing, for | Fred Drake | 2001-08-08 | 1 | -2/+9 |
| | | | | when the changes are just too small. | ||||
* | More names.... | Fred Drake | 2001-08-08 | 1 | -0/+2 |
| | |||||
* | Clean up some of the markup here -- be more consistent in the use of | Fred Drake | 2001-08-08 | 1 | -9/+9 |
| | | | | semantic labels instead of presentational markup. | ||||
* | "Thin" version of floor division docs: add // to the list of operators | Fred Drake | 2001-08-08 | 1 | -3/+3 |
| | | | | | | and //= to the list of other delimiter tokens. I'll work on it again when it's not so late... | ||||
* | Document two new items | Andrew M. Kuchling | 2001-08-07 | 1 | -9/+21 |
| | | | | | Correct error noticed by Keith Briggs Re-indent a paragraph | ||||
* | Add a comment on time.time() returning non-decreasing values except when | Fred Drake | 2001-08-05 | 1 | -1/+3 |
| | | | | | | the clock is set back. This closes SF bug #447945. | ||||
* | Document IPv6 changes. Contributed by itojun. | Martin v. Löwis | 2001-08-04 | 2 | -29/+206 |
| | |||||
* | Lots of new text and example code on embedding Python in C, contributed | Fred Drake | 2001-08-04 | 2 | -1/+309 |
| | | | | | | | | | | | by Albert Hofkamp. Some editing has been done for style and markup consistency. This also supplies an example of importing modules and calling a function defined in the module, so this closes SF bug #440037 as well. (The long example code was moved to a separate file so that it would format properly.) | ||||
* | Note that the mimetypes.MimeTypes class was added in Python 2.2. | Fred Drake | 2001-08-04 | 1 | -0/+2 |
| | |||||
* | Add documentation for the new aspects of the mimetypes module. | Fred Drake | 2001-08-03 | 1 | -1/+70 |
| | | | | This closes the SF bug (feature request) #439710. | ||||
* | Apply the new \mailheader macro where appropriate, and fix a few small | Fred Drake | 2001-08-03 | 5 | -54/+57 |
| | | | | markup inconsistencies. | ||||
* | Define the \mailheader macro and document conventions for using it. | Fred Drake | 2001-08-03 | 3 | -0/+14 |
| | |||||
* | Minor markup nits and slight style-guide conformance changes. | Fred Drake | 2001-08-03 | 1 | -8/+9 |
| | |||||
* | Documented the runtimemodel attribute. | Jack Jansen | 2001-08-03 | 1 | -0/+6 |
| | |||||
* | Fix some of the example code; the reference objects do not support a | Fred Drake | 2001-08-03 | 1 | -3/+3 |
| | | | | | | | get() method; just calling them is sufficient. (There was a get() method for this in an early version of the implementation.) Reported by Mats Wichmann. | ||||
* | User-defined methods *can* contain things other than user-defined functions | Fred Drake | 2001-08-02 | 1 | -1/+2 |
| | | | | as the callable, so use more flexible language. |