summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* update norobots linkSkip Montanaro2003-07-141-1/+1
|
* + libdumdbmSkip Montanaro2003-07-141-0/+1
|
* + libdumbdbmSkip Montanaro2003-07-141-0/+1
|
* minimal dumdbm module docSkip Montanaro2003-07-141-0/+57
|
* SF bug #738090: Section 13.3: htmllib.HTMLParser constructor definitionRaymond Hettinger2003-07-141-0/+3
| | | | | | amendment Add a clarifying cross-reference to the formatter module.
* SF bug #706546: u''.translate not documentedRaymond Hettinger2003-07-131-1/+11
| | | | | Clarified the difference between translate methods for string objects and Unicode objects.
* SF bug #770107: Typo in documentation of resource moduleRaymond Hettinger2003-07-131-2/+2
|
* Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2.Martin v. Löwis2003-07-122-9/+17
|
* Fix missing parenthesisRaymond Hettinger2003-07-121-1/+1
|
* SF patch #726751: Clarify docs for except target assignmentRaymond Hettinger2003-07-121-8/+20
| | | | | Brett found that the tutorial didn't really explain what was happening with exception targets. Hopefully, this sheds some light on the subject.
* Document Jim Fulton's docttest extensions.Raymond Hettinger2003-07-111-8/+70
|
* Minor fixups and added sections for iterators and generators.Raymond Hettinger2003-07-111-3/+117
|
* normalize whitespaceFred Drake2003-07-111-78/+79
|
* update the reference to the Apple Publications Style GuideFred Drake2003-07-111-4/+2
|
* SF #767592: unittest docs don't suggest "unittest.main()"Raymond Hettinger2003-07-101-0/+96
| | | | | Expanded docs to have a quick start example showing how to create and run tests.
* fix stupid typoFred Drake2003-07-101-1/+1
|
* Missing markup.Raymond Hettinger2003-07-101-1/+1
|
* Add versionadded. Remove duplicate "to"Neal Norwitz2003-07-091-1/+2
|
* Adding "use warnings" to .../Doc/perl/python.perl raisesKurt B. Kaiser2003-07-081-1/+1
| | | | the Perl requirement to 5.6.0 or later.
* Document interrupt_main()Kurt B. Kaiser2003-07-081-5/+5
| | | | Remove obsolete reference to deprecated exit_thread() function
* add missing 'Neal Norwitz2003-07-081-1/+1
|
* Improve compatibility with more versions of LaTeX2HTML and more LaTeXFred Drake2003-07-081-0/+1
| | | | | markup. Not currently needed, but easier to save this now than to have to figure it out when we do.
* - clean up table markup for readabilityFred Drake2003-07-081-40/+46
| | | | | - don't use \constant for literals; it's for "defined" constants - fix various consistency issues
* Update Tkinter3000 notes based on text from Fredrik Lundh.Fred Drake2003-07-081-7/+9
|
* Fixed a table that wasn't in a tableii block, and added a very simpleAnthony Baxter2003-07-081-26/+72
| | | | example to show how to log to a file.
* - explain about making Python scripts executable on Unix in moreFred Drake2003-07-071-2/+13
| | | | | detail - fix minor markup nit
* Error noted in email to python-docs: PyObject corresponds toFred Drake2003-07-071-1/+1
| | | | PyObject_HEAD, not PyObject_VAR_HEAD.
* add versionadded for getcheckintervalNeal Norwitz2003-07-071-0/+1
|
* New function sys.getcheckinterval(), to complement setcheckinterval().Tim Peters2003-07-061-0/+5
|
* Fix SF bug #766288, property() example gives syntax errorNeal Norwitz2003-07-051-1/+1
|
* Correct documentation of check interval - it's 100 by default, not 10 anySkip Montanaro2003-07-022-3/+3
| | | | longer. Pointed out by Alex Martelli.
* Note that csv files (when they are actual files) must be opened in 'b'inarySkip Montanaro2003-07-021-4/+9
| | | | | mode. Note that the only restriction on the csvfile passed to writer objects is that it have a write method.
* SF bug #764616: execfile(filename,...) not execfile(file,...)Raymond Hettinger2003-07-021-1/+1
| | | | Clarify parameter name.
* Grammar nit. SF bug #757822Raymond Hettinger2003-07-021-1/+1
|
* Revert the previous change; this is now dealt with in a better way.Fred Drake2003-07-021-0/+54
|
* There's a better way to deal with the "comment" environment; I foundFred Drake2003-07-021-0/+1
| | | | this in SF patch #732174.
* Make the "install schema" tables follow the same table style we useFred Drake2003-07-021-1/+1
| | | | elsewhere (lines between columns).
* The Macintosh Modules Reference now formats to GNU info without errorsFred Drake2003-07-021-2/+2
| | | | | | | | (which is not to say it's right), so re-enable it. Documenting Python and Installing Python Modules still have problems when converting to GNU info, so we'll continue to leave them out for now.
* Fill out the set of macros and environments supported somewhat.Fred Drake2003-07-021-0/+10
| | | | Some of this is still pretty iffy.
* The datetime C API really isn't usable outside the datetime moduleFred Drake2003-07-021-54/+0
| | | | | implementation, so remove this decoy (it break formatting of the GNU info version of the docs).
* Fix a variety of small markup nits.Fred Drake2003-07-026-20/+21
|
* - note that super() only applies to new-style classes;Fred Drake2003-07-011-2/+4
| | | | | closes SF bug #764003 - fix markup for consistency
* normalize markup for consistencyFred Drake2003-07-011-15/+16
|
* showwarning() calls formatwarning(), not showwarning().Tim Peters2003-07-011-1/+1
| | | | Bugfix candidate.
* Improve the wording a bitRaymond Hettinger2003-07-011-1/+1
|
* Fix spelling, grammar, usage, and markup.Raymond Hettinger2003-07-011-2/+3
|
* SF #751062: Tutorial: remove string exceptions, add parnassus, #postsRaymond Hettinger2003-07-011-8/+9
| | | | | | | | (Contributed by Gerritt Holl) * Remove the last mentions of string exceptions * Reference a third-party repository of programs * Minor clarification of comp.lang.py posting volumes
* Make temporary change of using _strptime for time.strptime permanent.Brett Cannon2003-07-011-8/+11
| | | | Flesh out docs to better explain time.strptime (closes bug #697990).
* Add versionadded info for the 2 new threading module functionsNeal Norwitz2003-06-301-0/+2
|
* Document the DISTUTILS_DEBUG variable.Thomas Heller2003-06-301-0/+21
| | | | | | Closes sf #761401. Backport candidate.