summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* SF #735051, add time.tzset documentationNeal Norwitz2003-06-081-0/+96
|
* - urllib2.py now knows how to order proxy classes, so the user doesn'tGustavo Niemeyer2003-06-071-0/+5
| | | | | | have to insert it in front of other classes, nor do dirty tricks like inserting a "dummy" HTTPHandler after a ProxyHandler when building an opener with proxy support.
* SF bug #749759: comparisons yield bool not intRaymond Hettinger2003-06-061-1/+1
| | | | Minor documentation fix.
* QUOTE_ALWAYS -> QUOTE_ALLSkip Montanaro2003-06-041-1/+1
|
* Patch #744238: Explain that different string types also may compare equal.Martin v. Löwis2003-05-311-1/+1
|
* Patch #744877: Explain filter in terms of list comprehension. RemoveMartin v. Löwis2003-05-311-3/+8
| | | | | explanation of int in terms of string.atoi. Explain sum in terms of reduce.
* Include both </tr> tags in the thead, not just the first.Fred Drake2003-05-291-3/+2
|
* SF bug #719367, string exceptions are deprecatedNeal Norwitz2003-05-296-22/+19
| | | | Remove references to string based exceptions in the doc.
* isdatadescriptor() was added recently.Neal Norwitz2003-05-291-0/+1
|
* Typo fix.Greg Ward2003-05-291-1/+1
|
* Rewrite the description of setparameters() so it actually reflects theGreg Ward2003-05-291-13/+33
| | | | | | | | | code (which has also been recently overhauled, so that it can be documented without embarassment). 'error' has been renamed to 'OSSAudioError'. Minor wordsmithing.
* Remove the note about the BerkeleyDB license. Barry indicates thatGregory P. Smith2003-05-281-7/+1
| | | | | sleepycat has told him that since python is OSS and berkeleydb is being distributed with python for the bsddb library all is fine.
* Oops. License is still an appendix.Jeremy Hylton2003-05-281-0/+2
|
* Update dependencies.Jeremy Hylton2003-05-281-2/+2
|
* Appendix was removed.Jeremy Hylton2003-05-281-3/+0
|
* Rename lib__future__.tex to libfuture.tex and add link in lib.tex.Jeremy Hylton2003-05-282-0/+1
|
* *** empty log message ***Jeremy Hylton2003-05-281-160/+0
|
* Include a link to the pybsddb web documentation for the modern objectGregory P. Smith2003-05-281-14/+25
| | | | | | | | | | | | | | oriented DbEnv & Db object BerkeleyDB interface. Include a note about Sleepycat's BerkeleyDB license with regards to distributing it within non-opensource applications and include a link to their website for license details. Document that 'r' is the default flag for the legacy bsddb btopen(), hashopen(), and rnopen() functions. This is apparently different than the dbm libraries in other languages according to Bug #732951. Changing the default from 'r' to 'c' would break backwards compatibility with legacy bsddb applications; documenting the default should suffice.
* More wordsmithing and cleanup.Greg Ward2003-05-261-30/+27
|
* Fix ref counts in initialization code.Raymond Hettinger2003-05-253-0/+3
|
* Lots of wordsmithing and typographical improvement.Greg Ward2003-05-231-58/+71
|
* 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 historyFred Drake2003-05-221-0/+1
|
* Add documentation for __future__Jeremy Hylton2003-05-211-0/+69
|
* Move future statement here from appendix a.Jeremy Hylton2003-05-211-0/+78
|
* Don't mention __slots__ as a technique for error avoidanceAndrew M. Kuchling2003-05-201-10/+6
|
* Fix markup nits.Fred Drake2003-05-201-4/+4
|
* Straighten out the docs for os.system(); the Unix and Windows behaviorsTim Peters2003-05-201-5/+13
| | | | | | really can't be smushed together. Bugfix candidate.
* Markup nits.Fred Drake2003-05-201-5/+5
|
* Remove unused line numbers from example code.Fred Drake2003-05-201-28/+27
| | | | Line numbering of examples is not used elsewhere.
* Fix missing parethesis.Raymond Hettinger2003-05-201-1/+1
|
* Add docs for key_file and cert_file arguments for HTTPSConnection. Copied ↵Brett Cannon2003-05-201-1/+7
| | | | from socket.ssl docs.
* * Correct Sniffer doc to correspond to the implementation.Skip Montanaro2003-05-191-7/+7
| | | | | * Add optional delimiters arg to Sniffer.sniff() which restricts the set of candidate field delimiters.
* Fix array.array.insert(), so that it treats negative indices asWalter Dörwald2003-05-181-1/+2
| | | | | being relative to the end of the array, just like list.insert() does. This closes SF bug #739313.
* Missing parenthesis.Raymond Hettinger2003-05-161-1/+1
|
* Added some missing PyObject* casts in the deallocators.Jim Fulton2003-05-163-2/+11
| | | | | | | Added some defines for PyMODINIT_FUNC so that the examples work with Python 2.2. I think I'm done hacking this documentation. Yippie! :)
* Added a missing PyObject* cast to the dealloc examples.Jim Fulton2003-05-161-2/+10
| | | | | Added a note that the mechanism for defining new tyoes documented here only works for Python 2.2 and higher.
* Removed reference to the out-of-date (and not very useful)Jim Fulton2003-05-161-23/+9
| | | | | | | Objects/xxobject.c example. Updated the discussion of type checking to refer to PyObject_TypeCheck.
* Add docs for MessageBeep.Guido van Rossum2003-05-161-0/+30
|
* [Bug #471893] Replace security material with a warning against unpicklingAndrew M. Kuchling2003-05-142-74/+31
| | | | untrusted data.
* document Stats.dump_stats(), new for Python 2.3Fred Drake2003-05-141-0/+8
|
* When an external application we use exits normally, exit with the sameFred Drake2003-05-141-2/+4
| | | | | | exit code they returned. All other types of exit from child processes are normalized to a return code of 1. Closes SF bug #732143.
* Add optional 'onerror' argument to os.walk(), to control errorGuido van Rossum2003-05-131-1/+9
| | | | handling.
* [Bug #713722] Delete dangling references to unwritten sectionsAndrew M. Kuchling2003-05-131-5/+2
|
* [Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'Andrew M. Kuchling2003-05-131-18/+19
| | | | Also, put match() description before search(); search() refers to match()
* Remove more markup from headersAndrew M. Kuchling2003-05-132-4/+4
|
* [Bug #729297] Remove markup in section headersAndrew M. Kuchling2003-05-131-3/+3
|
* [Bug #729817] Document the rexec and Bastion modules as deadAndrew M. Kuchling2003-05-133-19/+17
|
* Fix typoAndrew M. Kuchling2003-05-131-1/+1
|