Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement the encoding argument for toxml and toprettyxml. | Martin v. Löwis | 2002-06-30 | 1 | -1/+36 |
| | | | | Document toprettyxml. | ||||
* | Fixed bug 574978 shutil example out of sync with source code | Raymond Hettinger | 2002-06-30 | 1 | -2/+1 |
| | |||||
* | Fix bug 575221 referred to dictionary type instead of dict. | Raymond Hettinger | 2002-06-30 | 1 | -1/+1 |
| | |||||
* | Clarify the version information for the unicode() built-in. | Fred Drake | 2002-06-29 | 1 | -6/+9 |
| | | | | Closes SF bug #575272. | ||||
* | Add documentation for new textwrap module. | Greg Ward | 2002-06-29 | 3 | -0/+143 |
| | |||||
* | Typo fix. | Greg Ward | 2002-06-29 | 1 | -1/+1 |
| | |||||
* | Added support for some of the more recently defined macros and | Fred Drake | 2002-06-27 | 1 | -0/+14 |
| | | | | environments. | ||||
* | Clean up some markup. | Fred Drake | 2002-06-27 | 1 | -5/+6 |
| | |||||
* | dis.dis() also supports modules | Neal Norwitz | 2002-06-26 | 1 | -1/+2 |
| | |||||
* | Fix various typos reported to python-docs. | Fred Drake | 2002-06-26 | 1 | -1/+1 |
| | |||||
* | Fix typo reported to python-docs. | Fred Drake | 2002-06-26 | 1 | -1/+1 |
| | |||||
* | Add some acks | Andrew M. Kuchling | 2002-06-26 | 1 | -1/+2 |
| | |||||
* | Describe textwrap module | Andrew M. Kuchling | 2002-06-26 | 1 | -2/+35 |
| | |||||
* | Fix bug #573916. Sender and recipients reversed in email example. | Raymond Hettinger | 2002-06-26 | 1 | -2/+2 |
| | |||||
* | add seealso link to the bisect module | Skip Montanaro | 2002-06-26 | 1 | -0/+4 |
| | |||||
* | add /F's PriorityQueue example | Skip Montanaro | 2002-06-26 | 1 | -1/+19 |
| | |||||
* | Add a reminder | Andrew M. Kuchling | 2002-06-26 | 1 | -0/+2 |
| | |||||
* | Add a reminder | Andrew M. Kuchling | 2002-06-25 | 1 | -1/+3 |
| | |||||
* | Talk about interfaces rather than implementation classes where appropriate. | Fred Drake | 2002-06-25 | 2 | -42/+60 |
| | | | | | | Add hyperlinks to make the documentation on the Attributes and AttributesNS interfaces more discoverable. Closes SF bug #484603. | ||||
* | Added some more links to the "See also" section. | Fred Drake | 2002-06-25 | 1 | -0/+9 |
| | |||||
* | When talking about interfaces, use the interface names, not the names | Fred Drake | 2002-06-25 | 1 | -1/+1 |
| | | | | of the implementation classes. (Remove the "Impl" from two names.) | ||||
* | Fix typo | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Close bug 480337: Dict used before dicts explained. Added explanation | Raymond Hettinger | 2002-06-25 | 1 | -2/+11 |
| | | | | and examples of the dict() constructor. | ||||
* | Close bug 417930 by clarifying augmented assignment docs | Raymond Hettinger | 2002-06-25 | 1 | -0/+14 |
| | |||||
* | Fix SF bug 568269 by enclosing 'computername' in a raw string | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Minor English grammar correction | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Fix spacing in loop example | Raymond Hettinger | 2002-06-25 | 1 | -3/+3 |
| | |||||
* | SF # 572928 One word change for lib/libgettext.tex | Neal Norwitz | 2002-06-24 | 1 | -1/+1 |
| | | | | Fix typo. | ||||
* | Convert the example C code to ANSI rather than K&R. | Fred Drake | 2002-06-22 | 1 | -19/+17 |
| | | | | | This matches the Python C style guide (PEP 7). Closes SF patch #571489. | ||||
* | Correct the RE equivalent of scanf()'s %x and %X patterns. | Fred Drake | 2002-06-22 | 1 | -1/+1 |
| | | | | Closes SF bug #572169. | ||||
* | Typo fix. | Greg Ward | 2002-06-21 | 1 | -1/+1 |
| | |||||
* | Corrected return type and value information for PyUnicode_Count() and | Fred Drake | 2002-06-20 | 2 | -16/+20 |
| | | | | | PyUnicode_Find(). This closes SF bug #566631. | ||||
* | Make the docs for string.capitalize() match those of str.capitalize() | Fred Drake | 2002-06-20 | 1 | -1/+1 |
| | | | | | (which makes it more clear). Closes SF bug #571767. | ||||
* | Add a note that divmod() with complex numbers is deprecated. | Fred Drake | 2002-06-20 | 1 | -0/+3 |
| | |||||
* | Added reference to the Expat home page. | Fred Drake | 2002-06-20 | 1 | -0/+6 |
| | |||||
* | Try to improve the explanation of the "raise" statement and how its arguments | Fred Drake | 2002-06-20 | 2 | -33/+39 |
| | | | | | are interpreted. This closes SF bug #532467. | ||||
* | Simplify the production for argument list, making sure that it | Fred Drake | 2002-06-20 | 1 | -4/+4 |
| | | | | | | actually allows all the legal syntax, and nothing else. Previously, it did not allow a call like func(arg, **dictionary). This closes (again!) SF bug #493243. | ||||
* | SF 563530 added missing methods for emulating numeric types | Raymond Hettinger | 2002-06-20 | 1 | -1/+5 |
| | |||||
* | Typo: bites --> bytes | Fred Drake | 2002-06-18 | 1 | -1/+1 |
| | | | | (Hanging around small kids too much...;) | ||||
* | Add description of the deadlock problem with child processes and pipes, and | Fred Drake | 2002-06-18 | 2 | -0/+67 |
| | | | | | hints about how to work around it. Closes SF bug #530637. | ||||
* | Add a note about "as" not being a keyword, though it has special meaning | Fred Drake | 2002-06-18 | 1 | -0/+7 |
| | | | | | | | | when used as part of the import statement. Note that both "as" and "None" becoming keywords in the future. Closes SF bug #553262. | ||||
* | Note the limitation that mime_decode_header() only works for Latin-1. | Fred Drake | 2002-06-18 | 1 | -0/+1 |
| | | | | Closes SF bug #551912. | ||||
* | Played contortionist games with the argument_list production so it | Fred Drake | 2002-06-18 | 1 | -4/+4 |
| | | | | | might be easier to understand. This relates to SF bug #493243, which will be closed. | ||||
* | \productioncont: Replace leading spaces with so that it's | Fred Drake | 2002-06-18 | 1 | -0/+3 |
| | | | | | | | | | possible to control the indentation of continuation lines. cfuncline_helper(): Only mark the argument names are <var>, not the whole argument list. This leaves the argument types in the same font as the return type. Based on a casual suggestion from Guido. | ||||
* | Refactor the generation of signature lines for funcdesc, methoddesc, | Fred Drake | 2002-06-18 | 1 | -27/+22 |
| | | | | | | and friends. This was part of the changes to the presentation of signature lines, but does not include any of the aspects that people questioned. | ||||
* | Clarified documentation for os.access(). | Fred Drake | 2002-06-18 | 1 | -5/+7 |
| | | | | | Patch contributed by Sean Reifschneider. Closes SF patch #570618. | ||||
* | Clarified description of error handling for shutil.rmtree(). | Fred Drake | 2002-06-18 | 1 | -2/+3 |
| | | | | This closes SF patch #569832. | ||||
* | Fix documentation for PyMarshal_WriteObjectToFile() and | Fred Drake | 2002-06-17 | 1 | -5/+5 |
| | | | | | PyMarshal_WriteObjectToFile(). This closes SF bug #533735. | ||||
* | Ensure \verbatiminput always uses a unique filename for each input file in | Fred Drake | 2002-06-17 | 1 | -8/+66 |
| | | | | | | the "Download as text" link. Previously, it could map multiple source files to a single name since all files end up with the same extension. This closes SF bug #558279. | ||||
* | Add reminder, and a new POSIX function | Andrew M. Kuchling | 2002-06-17 | 1 | -6/+8 |
| | | | | Tweak traceback display for consistency |