summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Done with tread state descriptions. Sigh!Guido van Rossum1997-10-062-100/+618
|
* Added strerror()Guido van Rossum1997-10-052-0/+8
|
* Removed emacs.pyGuido van Rossum1997-10-052-4/+0
|
* Fixed some stuff that was incorrectly copied from regex.Guido van Rossum1997-10-052-20/+22
|
* Documented __import__, callable, isinstance, issubclass,Guido van Rossum1997-10-052-10/+166
| | | | and slice.
* Documented new exceptions and exception classes.Guido van Rossum1997-10-052-40/+234
|
* Add -N0 to dvips flags to generate page structure comments.Guido van Rossum1997-10-051-1/+1
|
* Checkpoint. Added docs for the new exception handling APIs and forGuido van Rossum1997-10-052-70/+506
| | | | the interfaces defined in import.h.
* Fixed up formatting.Fred Drake1997-09-302-114/+184
|
* Fixed up formatting, added descriptions for previously undocumented functions.Fred Drake1997-09-302-74/+138
|
* Update the description and the example to the new functionality, whichGuido van Rossum1997-09-092-118/+238
| | | | | | | is mostly concentrated in a generalized find_module() and the new load_module(). Added the new module type constants. Declare that SEARCH_ERROR and a whole bunch of module-type-specific functions are obsolete.
* Change packages to site-packages (so it's clearly not a package itself).Guido van Rossum1997-09-082-10/+10
|
* Added warning about ni's obsolescence. Retracted semantic changesGuido van Rossum1997-09-072-0/+12
| | | | (i.e. when using ni, the old __init__.py semantics prevail!)
* Initial revisionGuido van Rossum1997-09-072-0/+98
|
* Give in to Mike Meyer -- add *both* lib/python1.5/packages andGuido van Rossum1997-09-032-18/+40
| | | | | lib/site-python to the path (if they exist). This is a reasonable compromise.
* Document newly revamped site configuration mechanism.Guido van Rossum1997-08-302-38/+126
| | | | Damn the criticism in c.l.p!
* Added docs for 'user' customization module. Renamed libuser.texGuido van Rossum1997-08-305-3/+126
| | | | (which had UserDict/UserList) to libuserdict.tex.
* Added os.altsep; this is '/' on DOS/Windows, and None on systems withGuido van Rossum1997-08-292-4/+16
| | | | a sane filename syntax.
* Referred to POSIX docs as well as to Unix docs.Guido van Rossum1997-08-272-6/+6
|
* Ignore whitespace between formats (not internal to a count+format).Guido van Rossum1997-08-262-0/+6
|
* Removed some colons that shouldn't be there (probably leftovers fromGuido van Rossum1997-08-252-26/+52
| | | | docstring conversion).
* Oops, don't suppress echo of the rm command in l2hclean!Fred Drake1997-08-221-1/+1
|
* Simplify LaTeX2HTML targets && support re-use of output directories (whichFred Drake1997-08-221-17/+10
| | | | | | saves re-generation of images). Add l2hclean target.
* Changed description of SchedParams() in the following way:Fred Drake1997-08-222-4/+4
| | | | | | | | | | | \bar{Besocial} --> \var{besocial} ^--- note case ----^ The fixed version matches the signature. Changed "\bar{Besocial} gives ..." to "The \var{besocial} flag gives ..." to keep from starting the sentence with a lowercase token. (The \bar{} --> \var{} change was required to keep LaTeX happy.)
* Added missing "\end{funcdesc}" after FindFolder documentation.Fred Drake1997-08-222-0/+2
|
* mention cPickle and cStringIOGuido van Rossum1997-08-212-0/+8
|
* Fix some badly botched prototypes for PyRun* c.s.Guido van Rossum1997-08-212-6/+6
|
* Misc Mac mods by Jack. Added libmacic.tex, and these patches:Guido van Rossum1997-08-1813-97/+379
| | | | | | | libmacfs.tex Document NewAliasMinimalFromFullPath libmacos.tex Document SetEventHandler and SchedParams libmacui.tex Document asynchronous event handling libmailbox.tex Removed mime-turds that somehow got in here
* Consistently change Python-C API to Python/C API; added lots of newGuido van Rossum1997-08-172-18/+578
| | | | | introductory text for reference counts and error handling, with good examples.
* Tweaked all l2h targets to remove the target directory before renamingGuido van Rossum1997-08-151-2/+4
| | | | the intermediate target directory.
* Fixes to make it pass latex without complaints.Guido van Rossum1997-08-152-20/+28
|
* the usualGuido van Rossum1997-08-152-10/+14
|
* DateGuido van Rossum1997-08-152-2/+2
|
* Added AMK's first cut at docs for re.pyGuido van Rossum1997-08-145-1/+927
|
* Added more stuff on initialization (still rudimentary)Guido van Rossum1997-08-142-250/+866
|
* Added new intro sections (incomplete); fixed various typosGuido van Rossum1997-08-142-14/+374
|
* Updated platform specific notes (it is now more common to have this)Guido van Rossum1997-08-142-8/+40
| | | | added some caveats.
* Added buffer_info() docs.Guido van Rossum1997-08-142-0/+20
|
* Minor typo only.Guido van Rossum1997-08-142-4/+4
|
* Documented mime_decode_header() and mime_encode_header().Guido van Rossum1997-08-142-0/+16
|
* More emphasis on os.environ's calling of putenv; and added hint aboutGuido van Rossum1997-08-082-8/+28
| | | | flags for open().
* Added mimify docs (Sjoerd).Guido van Rossum1997-07-307-1/+159
|
* l2h target: l2htut was listed twice and l2hapi was skipped. Fixed.Fred Drake1997-07-301-1/+1
|
* Bump up the version number. The date still needs to be set (Guido willFred Drake1997-07-252-2/+2
| | | | | have to do that one!), but at least the version will match the release version. (1.5a2 got skipped for this.)
* A couple of grammatical nits.Fred Drake1997-07-242-130/+164
| | | | | | | | | Re-sequenced the function descriptions so that the formatting is described before the assumption is made that the reader has a clue about the formatting. Moved examples to be closer to the functions being demonstrated. Added example of saferepr() result.
* Document new 'quote' flag to cgi.escape().Guido van Rossum1997-07-192-6/+10
|
* added code.py; codehack.py is obsoleteGuido van Rossum1997-07-187-5/+81
|
* Added label{module-spam}Guido van Rossum1997-07-185-3/+11
|
* Remove pprint from the list of undocumented modules.Fred Drake1997-07-182-8/+0
|
* Add entry for the pprint module.Fred Drake1997-07-182-0/+2
|