summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Implement the encoding argument for toxml and toprettyxml.Martin v. Löwis2002-06-301-1/+36
| | | | Document toprettyxml.
* Fixed bug 574978 shutil example out of sync with source codeRaymond Hettinger2002-06-301-2/+1
|
* Fix bug 575221 referred to dictionary type instead of dict.Raymond Hettinger2002-06-301-1/+1
|
* Clarify the version information for the unicode() built-in.Fred Drake2002-06-291-6/+9
| | | | Closes SF bug #575272.
* Add documentation for new textwrap module.Greg Ward2002-06-293-0/+143
|
* Typo fix.Greg Ward2002-06-291-1/+1
|
* Added support for some of the more recently defined macros andFred Drake2002-06-271-0/+14
| | | | environments.
* Clean up some markup.Fred Drake2002-06-271-5/+6
|
* dis.dis() also supports modulesNeal Norwitz2002-06-261-1/+2
|
* Fix various typos reported to python-docs.Fred Drake2002-06-261-1/+1
|
* Fix typo reported to python-docs.Fred Drake2002-06-261-1/+1
|
* Add some acksAndrew M. Kuchling2002-06-261-1/+2
|
* Describe textwrap moduleAndrew M. Kuchling2002-06-261-2/+35
|
* Fix bug #573916. Sender and recipients reversed in email example.Raymond Hettinger2002-06-261-2/+2
|
* add seealso link to the bisect moduleSkip Montanaro2002-06-261-0/+4
|
* add /F's PriorityQueue exampleSkip Montanaro2002-06-261-1/+19
|
* Add a reminderAndrew M. Kuchling2002-06-261-0/+2
|
* Add a reminderAndrew M. Kuchling2002-06-251-1/+3
|
* Talk about interfaces rather than implementation classes where appropriate.Fred Drake2002-06-252-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 Drake2002-06-251-0/+9
|
* When talking about interfaces, use the interface names, not the namesFred Drake2002-06-251-1/+1
| | | | of the implementation classes. (Remove the "Impl" from two names.)
* Fix typoRaymond Hettinger2002-06-251-1/+1
|
* Close bug 480337: Dict used before dicts explained. Added explanationRaymond Hettinger2002-06-251-2/+11
| | | | and examples of the dict() constructor.
* Close bug 417930 by clarifying augmented assignment docsRaymond Hettinger2002-06-251-0/+14
|
* Fix SF bug 568269 by enclosing 'computername' in a raw stringRaymond Hettinger2002-06-251-1/+1
|
* Minor English grammar correctionRaymond Hettinger2002-06-251-1/+1
|
* Fix spacing in loop exampleRaymond Hettinger2002-06-251-3/+3
|
* SF # 572928 One word change for lib/libgettext.texNeal Norwitz2002-06-241-1/+1
| | | | Fix typo.
* Convert the example C code to ANSI rather than K&R.Fred Drake2002-06-221-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 Drake2002-06-221-1/+1
| | | | Closes SF bug #572169.
* Typo fix.Greg Ward2002-06-211-1/+1
|
* Corrected return type and value information for PyUnicode_Count() andFred Drake2002-06-202-16/+20
| | | | | PyUnicode_Find(). This closes SF bug #566631.
* Make the docs for string.capitalize() match those of str.capitalize()Fred Drake2002-06-201-1/+1
| | | | | (which makes it more clear). Closes SF bug #571767.
* Add a note that divmod() with complex numbers is deprecated.Fred Drake2002-06-201-0/+3
|
* Added reference to the Expat home page.Fred Drake2002-06-201-0/+6
|
* Try to improve the explanation of the "raise" statement and how its argumentsFred Drake2002-06-202-33/+39
| | | | | are interpreted. This closes SF bug #532467.
* Simplify the production for argument list, making sure that itFred Drake2002-06-201-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 typesRaymond Hettinger2002-06-201-1/+5
|
* Typo: bites --> bytesFred Drake2002-06-181-1/+1
| | | | (Hanging around small kids too much...;)
* Add description of the deadlock problem with child processes and pipes, andFred Drake2002-06-182-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 meaningFred Drake2002-06-181-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 Drake2002-06-181-0/+1
| | | | Closes SF bug #551912.
* Played contortionist games with the argument_list production so itFred Drake2002-06-181-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'sFred Drake2002-06-181-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 Drake2002-06-181-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 Drake2002-06-181-5/+7
| | | | | Patch contributed by Sean Reifschneider. Closes SF patch #570618.
* Clarified description of error handling for shutil.rmtree().Fred Drake2002-06-181-2/+3
| | | | This closes SF patch #569832.
* Fix documentation for PyMarshal_WriteObjectToFile() andFred Drake2002-06-171-5/+5
| | | | | PyMarshal_WriteObjectToFile(). This closes SF bug #533735.
* Ensure \verbatiminput always uses a unique filename for each input file inFred Drake2002-06-171-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 functionAndrew M. Kuchling2002-06-171-6/+8
| | | | Tweak traceback display for consistency