Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Add a caveat about boundary conditions and RE concatenation, so that the | Fred Drake | 2001-08-02 | 1 | -9/+12 |
| | | | | | | | documents do not make an overly-strong assertion about the properties of RE concatenation. Add an example of RE{m,} syntax and what it will and will not match. | ||||
* | Move away from apply() to using extended call syntax for some example | Fred Drake | 2001-08-02 | 1 | -3/+19 |
| | | | | | | | fragments when discussing equivalence of thhe C API to what a Python programmer sees. Added descriptions of PyEval_SetProfile() and PyEval_SetTrace(). | ||||
* | Explain that __init__() methods do not get to return values. | Fred Drake | 2001-08-02 | 1 | -8/+9 |
| | |||||
* | Add anentry for the distutils.sysconfig module docs. | Fred Drake | 2001-08-02 | 1 | -1/+3 |
| | |||||
* | Update some incorrect comments about the bdist commands that exist. | Fred Drake | 2001-08-02 | 1 | -4/+7 |
| | | | | Add an entry for the distutils.sysconfig module docs. | ||||
* | Documentation for the distutils.sysconfig module. | Fred Drake | 2001-08-02 | 1 | -0/+113 |
| | |||||
* | Cleaned up the description of readline.set_completer(). | Fred Drake | 2001-08-01 | 1 | -4/+7 |
| | | | | Thanks to Nathaniel Gray for reporting the confusion. | ||||
* | Added more names. | Fred Drake | 2001-08-01 | 1 | -0/+2 |
| | |||||
* | Minor re-wording in the exaplantion of sequence comparisons. | Fred Drake | 2001-08-01 | 1 | -3/+4 |
| | | | | This closes SF bug #445749. | ||||
* | Added an example of a string value for the replacement parameter to | Fred Drake | 2001-08-01 | 1 | -44/+60 |
| | | | | | | | | | re.sub(). This closes SF bug #446136. Fixed description of RE modifiers so that RE{#} and RE{#,} are more clearly described and disambiguated (plain RE{#} had not been described at all). Reported by Jeremy Craven via email. | ||||
* | Fix description of buffer_info(), and add a note that there is a better | Fred Drake | 2001-08-01 | 1 | -6/+15 |
| | | | | | | way... This closes SF bug #444842. | ||||
* | Move C-level changes into a section of their own | Andrew M. Kuchling | 2001-07-31 | 1 | -36/+64 |
| | | | | | Add string.ascii_letters Remove duplicate MBCS paragraph | ||||
* | Rewrite MBCS paragraph following MH's suggestions, and credit him | Andrew M. Kuchling | 2001-07-31 | 1 | -1/+12 |
| | | | | Note new Windows installer | ||||
* | Make some adjustments to the markup, and fix up some style-guide issues. | Fred Drake | 2001-07-29 | 1 | -17/+17 |
| | |||||
* | Patch #416224: add readline completion to cmd.Cmd. | Martin v. Löwis | 2001-07-28 | 1 | -1/+23 |
| | |||||
* | Typo fix. | Greg Ward | 2001-07-26 | 1 | -1/+1 |
| | |||||
* | SF bug #444510: int() should guarantee truncation. | Tim Peters | 2001-07-26 | 1 | -3/+1 |
| | | | | It's guaranteed now, assuming the platform modf() works correctly. | ||||
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 3 | -5/+5 |
| | |||||
* | trivial rewording in footnote 5. | Skip Montanaro | 2001-07-25 | 1 | -2/+2 |
| | |||||
* | Add entry for the new distutils section. | Fred Drake | 2001-07-24 | 2 | -0/+2 |
| | |||||
* | Overview comments for the distutils package, with links to the distutils | Fred Drake | 2001-07-24 | 1 | -0/+37 |
| | | | | | manuals for more information. This is being added to make it easier to find the documentation for the distutils code. | ||||
* | Add labels to all \section and \subsection headings for use in references. | Fred Drake | 2001-07-24 | 1 | -15/+15 |
| | |||||
* | Be more specific about corner cases in the description of the $ RE syntax, | Fred Drake | 2001-07-23 | 1 | -4/+7 |
| | | | | | | and include an example where the MULTILINE flag makes a real difference. This closes SF bug #441600. | ||||
* | When explaining the enterabs() method, using the modern spelling of apply(), | Fred Drake | 2001-07-23 | 1 | -3/+3 |
| | | | | and relax the type of the argument list from tuple to sequence. | ||||
* | Remove self-reference from the anydbm module. | Fred Drake | 2001-07-23 | 1 | -1/+0 |
| | | | | This closes SF patch #443788. | ||||
* | Typo: Added missing "if". | Fred Drake | 2001-07-23 | 1 | -1/+1 |
| | | | | This is part of SF patch #442788. | ||||
* | Add StopIteration to the list of exceptions *not* derived from StandardError. | Fred Drake | 2001-07-23 | 1 | -3/+4 |
| | | | | | Slightly re-word discussion of SystemExit and fork(). This is part of SF patch #443788. | ||||
* | Convert the use of apply(f, args) to the new spelling: f(*args). | Fred Drake | 2001-07-23 | 1 | -1/+1 |
| | | | | This is part of SF patch #443788. | ||||
* | Corrected a section reference (title was wrong). | Fred Drake | 2001-07-20 | 1 | -5/+8 |
| | | | | | Added information on the return values of PyArg_ParseTuple() and PyArg_ParseTupleAndKeywords(). | ||||
* | Typo: PyArgs_ParseTuple --> PyArg_ParseTuple | Fred Drake | 2001-07-20 | 1 | -30/+62 |
| | | | | | | Moved the PyArg_Parse*(), Py_BuildValue() functions to the Utilities chapter, added a minimal description and reference to the Extending manual for Py_BuildValue(). | ||||
* | Added information on Py_BuildValue(). | Fred Drake | 2001-07-20 | 1 | -0/+3 |
| |