summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Update documentation for PyErr_Format, because the function has changed.Moshe Zadka2000-09-011-9/+19
| | | | Connected to patch 100895
* Document the new optional argument "rest" on the transfercmd(),Barry Warsaw2000-09-011-5/+22
| | | | | ntransfercmd(), and retrbinary() commands. This closes SF patch #101187.
* Document PyImport_AppendInittab(), PyImport_ExtendInittab(), andFred Drake2000-09-011-1/+39
| | | | | | struct _inittab. This closes SourceForge bug #111499.
* refactor __del__ exception handler into PyErr_WriteUnraisableJeremy Hylton2000-09-011-0/+11
| | | | | add sanity check to gc: if an exception occurs during GC, call PyErr_WriteUnraisable and then call Py_FatalEror.
* Fix markup error and minor consistency nit.Fred Drake2000-08-311-2/+2
|
* add user-modifiable recursion_limitJeremy Hylton2000-08-311-0/+18
| | | | | | | | | | | ceval.c: define recurion_limit (static), default value is 2500 define Py_GetRecursionLimit and Py_SetRecursionLimit raise RuntimeError if limit is exceeded PC/config.h: remove plat-specific definition sysmodule.c: add sys.(get|set)recursionlimit
* Document the limitation that urllib does not work with proxies whichFred Drake2000-08-311-5/+9
| | | | | | | require authenication. This is an implementation limitation rather than required behavior, and may be fixed in the future. This closes SourceForge bug #111725.
* Added abstract.Greg Ward2000-08-312-2/+19
|
* UNARY_NEG is supposed to be UNARY_NEGATIVE (spotted by Charles WaldmanFred Drake2000-08-311-2/+2
| | | | | | <cgw@fnal.gov>). Fix minor problem with EXTENDED_ARG description markup..
* Update some version information for tools based on prodding from Greg Ward.Fred Drake2000-08-311-12/+11
|
* Get rid of "sec:" prefix that slipped into a couple of \label's.Greg Ward2000-08-311-4/+4
|
* New method getnamespace.Sjoerd Mullender2000-08-311-0/+5
| | | | | | Since the application never gets to see the namespace abbreviation used in the XML document, but some applications may need to know them, we provide this method.
* Be a little more careful to avoid including style information in theFred Drake2000-08-311-13/+12
| | | | | | | | generated markup. Don't be careless with the navigation icons! We should use the blank icon where there is not anyplace to go for a particular position in the navigation bar.
* Always room to remove more formatting from the HTML!Fred Drake2000-08-311-2/+3
|
* Move common parameters to mkhowto to a variable, add up-link from theFred Drake2000-08-311-19/+13
| | | | generated documents to the document index.
* Add --up-link and --up-title parameters to allow linking the top levelFred Drake2000-08-311-1/+12
| | | | | of the generated document to an external index. These correspond to the -up_url and -up_title parameters of LaTeX2HTML.
* Push some table header formatting to the style sheet; this also helpsFred Drake2000-08-311-15/+97
| | | | | | separate some of the ties between l2hinit.perl and python.perl. Revamp the "title page" construction to allow more flexibility.
* Remove obsolete scripts.Fred Drake2000-08-313-159/+0
|
* Add --l2h-init option, which can augment the standard LaTeX2HTMLFred Drake2000-08-311-3/+11
| | | | | initialization with additional Perl files. This can be given more than once.
* Centralize the processing logic for LaTeX documents into the mkhowto script;Fred Drake2000-08-312-87/+46
| | | | | | | do not use mkdvi.sh or mkhtl.sh any more. This slows down building all versions of the documentation, but if you are only building one format, it does not matter.
* Relocate the popen2 documentation since it is now substantially moreFred Drake2000-08-311-1/+1
| | | | portable.
* Document PyOS_CheckStack().Fred Drake2000-08-311-2/+12
| | | | Fix a couple of really minor markup nits.
* Added note about documenting the SSL support in the socket module.Fred Drake2000-08-311-0/+2
|
* Push a little more here to avoid style information in the generationFred Drake2000-08-301-0/+3
| | | | scripts as much as possible.
* Remove the reference to stdwin. The comment was still true, but noFred Drake2000-08-301-6/+4
| | | | longer meaningful to a new user, since stdwin is long gone.
* doc changes to parallel changes to calendar.py moduleSkip Montanaro2000-08-301-11/+46
|
* Fix markup errorAndrew M. Kuchling2000-08-301-1/+1
|
* Markup revisions. Nothing was actually required to be able to format it,Fred Drake2000-08-301-54/+55
| | | | but many conventions were broken.
* Added a couple of links to online documentation. Reasonable since thisFred Drake2000-08-301-0/+19
| | | | file is not used in the online documentation.
* Oops, spell MAL's name right.Barry Warsaw2000-08-301-1/+1
|
* Documentation for the gettext module.Barry Warsaw2000-08-301-0/+495
|
* Added libgettext.texBarry Warsaw2000-08-302-0/+2
|
* Removed forgotten text in list comprehensions section (taken from the HaskellAndrew M. Kuchling2000-08-301-213/+263
| | | | | | | | description of listcomps and used as inspiration) Rearranged sections (which accounts for much of the size of the diffs) Added section on augmented assignment Mentioned 'print >>file' Broke up the "Core Changes" section into subsections
* Move a little more here.Fred Drake2000-08-291-0/+3
|
* Add a --style option to allow specifying an alternate CSS style sheet forFred Drake2000-08-291-4/+8
| | | | | | | | HTML generation; the machinery was there but no option to set it was defined. Simplify some of the path-math since we can assume a recent version of Python.
* Add a comment noting that the dependency information is stored inFred Drake2000-08-291-0/+3
| | | | Makefile.deps.
* These files are not part of the current plan.Fred Drake2000-08-2925-1594/+0
|
* Document "print >> None"Barry Warsaw2000-08-291-3/+4
|
* Closing patch #101120 -- After everyone agreed.Moshe Zadka2000-08-251-35/+40
|
* Add reference to RFC 2396 in "See also" section.Fred Drake2000-08-251-6/+11
| | | | Minor cleanups.
* Revised documentation relevant to SourceForge patch #100837Fred Drake2000-08-251-12/+23
| | | | | | (simplify making HTTP POST requests). Added documentation of URLopener.version and how it can be overridden.
* Documentation for poll() interface (SF patch #100852)Andrew M. Kuchling2000-08-251-1/+76
|
* Rough and incomplete documentation on augmented assignment, which followsThomas Wouters2000-08-243-4/+70
| | | | shortly. Markup also needs checking.
* Addresses the other half of Bug #112634 -- the documentation suggestedGuido van Rossum2000-08-241-1/+1
| | | | | | | that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. (Fred, maybe the version class variable should be documented now?)
* Move references to RFCs to a "See also" section for consistency withFred Drake2000-08-241-5/+16
| | | | other sections of the library reference.
* Moshe Zadka <moshez@math.huji.ac.il>:Fred Drake2000-08-241-0/+12
| | | | | | | Documentation updates for urlretrieve() and URLopener.retrieve(), to reflect Randall Hopper's patch for those functions. This closes SourceForge patch #100837.
* Make sure Thomas Wouters has enough to do. ;-)Fred Drake2000-08-241-0/+4
| | | | | (Some of this is in-progress; this also serves as a reminded to me to check this out once it is written.)
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-241-0/+7
| | | | Update the dis module documentation to reflect the EXTENDED_ARG opcode.
* fix list comprehension discussion to use \keyword macro instead of simplySkip Montanaro2000-08-231-3/+4
| | | | quoting keywords.
* update commonprefix doc to make sure user is aware it worksSkip Montanaro2000-08-231-2/+4
| | | | | character-by-character and that that behavior may result in it returning prefixes that are not valid paths