summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Set release information for Python 2.2.3.Fred Drake2003-05-292-3/+3
|
* update copyright datesFred Drake2003-05-221-1/+1
|
* Correct dependency information -- the Python docs load the "About thisFred Drake2003-05-221-2/+2
| | | | document" text from html/stdabout.dat, not html/about.dat.
* Minor elaboration in the information about reporting errors.Fred Drake2003-05-221-1/+2
|
* update version/release informationFred Drake2003-05-221-3/+3
|
* update version historyFred Drake2003-05-221-0/+2
|
* the release manager has been fixed; this *will* be a release candidateFred Drake2003-05-221-1/+1
|
* Start preparing the doc tree for 2.2.3.Fred Drake2003-05-221-1/+1
|
* Backport: Don't mention __slots__ as a technique for error avoidanceAndrew M. Kuchling2003-05-201-10/+6
|
* Remove unused line numbers from example code.Fred Drake2003-05-201-28/+27
| | | | Line numbering of examples is not used elsewhere.
* Fixing typo from previous patch.Brett Cannon2003-05-201-2/+2
|
* Add docs for use of key_file and cert_file parameters.Brett Cannon2003-05-201-1/+6
|
* Fix nits found by Tools\scripts\texcheck.pyRaymond Hettinger2003-05-1616-24/+24
|
* Add a specific mention of the term "operator overloading" and add anFred Drake2003-05-121-1/+4
| | | | index entry. Suggested to python-docs.
* add missing parens - verified w/ interpreter - sorry to dismiss your commentSkip Montanaro2003-05-071-1/+1
| | | | Fred
* replace most uses of `...` by repr(...), noting that `...` is discouraged,Skip Montanaro2003-05-071-17/+15
| | | | but convenient in interactive sessions.
* At the site of an indexed reference to print, point to the relevantFred Drake2003-04-301-0/+4
| | | | documentation. Closes SF bug #723136.
* - clean up some extra punctuation hidden in indexing markupFred Drake2003-04-291-13/+10
| | | | | - fix a typo and one markup nit - normalize whitespace
* Clarify that the timeout argument to read_until() is in seconds.Fred Drake2003-04-291-1/+2
|
* SF bug #729096: getopt online documentation example improvementRaymond Hettinger2003-04-291-1/+4
| | | | | | | | | A newbie found it difficult to translate the exampe into a case that used only short options or long options but not both. He tried to shorten the tuple search but forgot the trailing comma, The appropriate pattern is an equality check. Revised the example to point him in the right direction.
* backport of note arising from bug 711019.Skip Montanaro2003-04-261-1/+11
|
* Markup change; make the notice a little stronger by using the "boxed"Fred Drake2003-04-251-6/+9
| | | | version.
* Add modified versions of the examples from Sean ReifschneiderFred Drake2003-04-251-0/+36
| | | | (SF patch #545480).
* Backport 1.47 and 1.7Raymond Hettinger2003-04-252-11/+47
| | | | | SF Patch 549151: urllib2 POSTs on redirect (contributed by John J Lee)
* Add cross-references between urllib.urlencode() and cgi.parse_qs[l]().Fred Drake2003-04-242-0/+6
| | | | Closes SF bug #724751.
* Include notice that the rotor module will be deprecated in Python 2.3.Fred Drake2003-04-241-0/+2
|
* Fix documentation errors in regards to urlretrieve() and local files.Brett Cannon2003-04-241-11/+11
| | | | Also fix typos in urllib lib doc.
* backport note about password limitationsSkip Montanaro2003-04-231-0/+7
|
* fsync(): Implemented for Windows, via calling MS _commit. This countsTim Peters2003-04-231-2/+9
| | | | | | as "a bug" because there's no other way in core Python to ensure that bytes written are actually on disk. At least ZODB wants this guarantee, for robustness against crashes.
* Added documentation for the handle_pi() method, based on SF patch #662464.Fred Drake2003-04-171-1/+15
| | | | Closes SF bug #659188, patch #662464.
* As discussed on python-dev, revised docs to note thatRaymond Hettinger2003-04-161-1/+8
| | | | | | PyObject_IsTrue() can have an error result. Also, added missing docs for PyObject_Not().
* Backport:Neal Norwitz2003-04-111-1/+5
| | | | | | | | | | | Fix SF bug #697220, string.strip implementation/doc mismatch Attempt to make all the various string/unicode *strip methods the same. * Doc - add doc for when functions were added * UserString * string/unicode object methods * string module functions 'chars' is used for the last parameter everywhere.
* Backport comments about PyObject_Type() (HEAD revisions 1.24, 1.25).Fred Drake2003-04-091-3/+7
|
* Added example of using positional and keyword args with atexit.register().Fred Drake2003-04-081-0/+15
| | | | Based on a suggestion from a reader.
* Match some of the markup changes from the trunk.Fred Drake2003-03-311-3/+4
|
* Fix symbol in grammar; this should fix some hyperlinking in the HTMLFred Drake2003-03-311-1/+1
| | | | version.
* Backporting docs for email 2.5Barry Warsaw2003-03-216-13/+27
|
* - added example of using a comparison function with list.sort(), andFred Drake2003-03-201-6/+35
| | | | | | | explained the construction of a [(key, value), ...] list as an alternative - backport additional notes on list use from Python 2.3 documentation; mostly warnings about what not to rely on
* - backport portions of SF patch #700798: fixes and cleanups for descriptor infoFred Drake2003-03-201-9/+9
| | | | - use a TeX "tie" to prevent word-wrapping in "section x.y"-like text
* - explain what a UNC path is in the makedirs() description, sinceFred Drake2003-03-201-2/+5
| | | | they're actually mentioned there
* SF bug #697220, string.strip implementation/doc mismatchNeal Norwitz2003-03-041-0/+2
|
* Backported fix to [521782] unreliable file.read() error handling.Gustavo Niemeyer2003-03-041-1/+3
|
* TypoRaymond Hettinger2003-02-212-2/+2
|
* Backport libtime.tex 1.53:Raymond Hettinger2003-02-211-1/+1
| | | | Fixed longstanding bug in the description of strftime's %W code.
* Backport 1.7: Clarify when a read-only object is created.Raymond Hettinger2003-02-211-0/+5
|
* SF bug #685775: turtle circle() documentation errorRaymond Hettinger2003-02-211-4/+5
|
* Fix SF bug #687655, String formatting conversions misleadingNeal Norwitz2003-02-171-1/+1
|
* backporting Fred's doc fix.Skip Montanaro2003-02-141-2/+3
|
* add missing description of os.extsepSkip Montanaro2003-02-141-0/+5
|
* Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS XNeal Norwitz2003-02-071-1/+7
| | | | Even with the extra work to cleanup the env, *BSD still leaks. Add a note.