summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Many minor markup adjustments for consistency.Fred Drake2002-05-021-10/+10
|
* Remove extra period produced by previous change.Fred Drake2002-05-021-3/+3
|
* Correct Moshe's e-mail addressAndrew M. Kuchling2002-05-021-8/+6
| | | | | | Point to PEP 100 for MAL's Unicode proposal Fix URL for XML HOWTO Bump version number
* Note that NameError's message also changed in 2.0Andrew M. Kuchling2002-05-021-8/+10
|
* Message for NameError has changedAndrew M. Kuchling2002-05-021-1/+1
|
* Correct information on support for repietition & concatenation for bufferFred Drake2002-05-021-6/+8
| | | | | and xrange objects. This closes SF bug #550555.
* Added some notes on setting up the documentation tools on Cygwin.Fred Drake2002-05-011-0/+40
|
* Added more style for major warnings.Fred Drake2002-05-011-0/+9
|
* Add Pickler.clear_memo() so the pickle and cPickle modules are more similar.Fred Drake2002-05-011-4/+9
|
* list_documented_items(): Basic implementation.Fred Drake2002-05-011-4/+33
| | | | | This still does not work well since ctags does not do a good job with the Python headers, appearantly due to the DL_IMPORT macro. ;-(
* Explain what os.read() returns at end of file.Fred Drake2002-05-011-1/+3
| | | | This closes SF bug #550409. Applying to release21-maint & release22-maint.
* Add missing right-parenthesis.Fred Drake2002-05-011-1/+1
|
* moved from Tools/scripts (was only at rev 1.1 - no changes yet - so I simplySkip Montanaro2002-04-301-0/+128
| | | | removed it from there and added it here)
* Add a note about when the "%r" formatting code was added.Fred Drake2002-04-301-0/+1
|
* Added a missing "|" in the grammar productions used in the reference manualFred Drake2002-04-301-7/+9
| | | | | | | (reported by François Pinard). Added some missing "_" characters in the same cluster of productions. Added missing floor division operator in m_expr production, and mention floor division in the relevant portion of the text.
* Typo: whcar_t should be wchar_t.Thomas Heller2002-04-291-4/+4
| | | | Bugfix candidate? Don't know how this is handled in the docs.
* Add some items, and remove a note to myselfAndrew M. Kuchling2002-04-291-7/+7
|
* Small markup adjustments for consistency.Fred Drake2002-04-291-2/+2
|
* Mostly in SequenceMatcher.{__chain_b, find_longest_match}:Tim Peters2002-04-291-14/+18
| | | | | | | | | | | | This now does a dynamic analysis of which elements are so frequently repeated as to constitute noise. The primary benefit is an enormous speedup in find_longest_match, as the innermost loop can have factors of 100s less potential matches to worry about, in cases where the sequences have many duplicate elements. In effect, this zooms in on sequences of non-ubiquitous elements now. While I like what I've seen of the effects so far, I still consider this experimental. Please give it a try!
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-1/+10
| | | | | | | | | | | | | | | | | | | | | | don't understand how this function works, also beefed up the docs. The most common usage error is of this form (often spread out across gotos): if (_PyString_Resize(&s, n) < 0) { Py_DECREF(s); s = NULL; goto outtahere; } The error is that if _PyString_Resize runs out of memory, it automatically decrefs the input string object s (which also deallocates it, since its refcount must be 1 upon entry), and sets s to NULL. So if the "if" branch ever triggers, it's an error to call Py_DECREF(s): s is already NULL! A correct way to write the above is the simpler (and intended) if (_PyString_Resize(&s, n) < 0) goto outtahere; Bugfix candidate.
* Slightly expand and clarify the differences between getegid(), getgid(),Fred Drake2002-04-261-6/+9
| | | | | getpgrp(), and setpgid(). This closes SF bug #547939.
* Be more consistent, both internally and with recommended practice.Fred Drake2002-04-261-4/+2
| | | | This closes SF bug #547953.
* Documentation for the enumerate() function/type.Fred Drake2002-04-262-0/+55
| | | | This closes SF patch #547162.
* Fix a small mistake and complete some function prototypes.Thomas Heller2002-04-241-4/+4
| | | | SF Patch #547813.
* Add text about circular references caused by storing frames in localFred Drake2002-04-231-0/+16
| | | | variables. This closes SF bug #543148.
* Minor change to an index entry.Fred Drake2002-04-231-1/+1
|
* Clarify the return value of PyObject_IsInstance().Fred Drake2002-04-231-8/+9
|
* WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New.Fred Drake2002-04-231-6/+38
| | | | | isatty(), WIFEXITED(), WIFSIGNALED(), WIFSTOPPED(): Changed to return bools instead of ints.
* SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL)Anthony Baxter2002-04-231-3/+9
| | | | | | | | | | | | closes SF #514433 can now pass 'None' as the filename for the bsddb.*open functions, and you'll get an in-memory temporary store. docs are ripped out of the bsddb dbopen man page. Fred may want to clean them up. Considering this for 2.2, but not 2.1.
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-221-7/+18
| | | | | | | | | http://www.python.org/sf/444708 This adds the optional argument for str.strip to unicode.strip too and makes it possible to call str.strip with a unicode argument and unicode.strip with a str argument.
* Hack around the "2.1.6 Blank lines" bug in a way that the TOC stillTim Peters2002-04-211-8/+10
| | | | | displays a recognizable section title (there are extra blanks at the end of it now, due to the nested anchor, but that's fine).
* Give the Help viewer a font-size button. This isn't documented by MS,Tim Peters2002-04-211-1/+30
| | | | | but is documented by others on the web, and the defn of the magic flag needed appears in MS's htmlhelp.h header file.
* Move "everything left one": the TOC now shows each doc directory as aTim Peters2002-04-201-9/+10
| | | | | | | distinct top-level node. Before they were all nested under an artificial top-level node, uselessly chewing up horizontal space, and ensuring that the only thing the user saw in the TOC upon opening the file was a single collapsed top-level folder.
* Stopped all warnings from the HTML Help Compiler, by generating properTim Peters2002-04-201-21/+34
| | | | | | | | | | | | | | | HTML (or, at least, proper in its view). The TOC file is now identical to what the HTML compiler itself generates, except for whitespace and a glitch identified below. The pretty-printing done by prechm.py is pretty much destroyed for now; if you need it pretty-printed, just make the Help Compiler save the files (it's got its own idea of pretty- printing anyway). Glitch: The title of Ref Man "2.1.6 Blank lines" shows up as a blank for now. This is because the relevant entry in ref/index.html contains nested anchors, and pychm really has no idea what to do with that. I hacked it for now to avoid any error messages or worse insanity, and filed a bug report against the docs.
* Widespread: Used classes in a more natural way. Added convenienceTim Peters2002-04-201-63/+76
| | | | | | | methods to squash code duplication. Simplified several overly complex chunks of logic. Built output strings more with string interpolation instead of infix '+'. Added comments. Exploited recent Python features (chiefly bool and augmented assignment).
* Replaced the fiddly 5-tuples with a new Book convenience class, allowingTim Peters2002-04-201-65/+86
| | | | | | to reference fields via names instead of meaningless little integers. This turned up one case where the wrong little integer was being used, in informative progress output. Fixed that too.
* Fixed a comment.Tim Peters2002-04-201-1/+1
|
* All over: get rid of blanks before colons that open code blocks.Tim Peters2002-04-201-45/+45
|
* do_project(): Modernized the code.Tim Peters2002-04-201-9/+10
|
* Added "What's New" to the 2.2 doc set.Tim Peters2002-04-201-0/+1
|
* Added a stop-list to reduce the size of the full text search index. Fred,Tim Peters2002-04-191-3/+29
| | | | | populate the "stop_list" triple-quoted string with your favorite handful of stop words.
* project_template: use dict interpolation instead of giant tuples.Tim Peters2002-04-191-14/+13
|
* + Changed TOC to folder-tree style.Tim Peters2002-04-191-1/+2
| | | | | | | + Increased size of the window the user sees the first time. + Arranged for the display to remember its last size and position. + Added a Favorites (bookmarks) tab. + Added the "Advanced Search" decorations.
* Generates inputs to the Microsoft Help Compiler, which creates compiledTim Peters2002-04-191-0/+362
| | | | | | | HTML help files (.chm). Obtained from Robin Dunn's packaging of the 2.2 docs at <http://alldunn.com/python/>, obtained in turn from Hernán Martínez Foffani's original work at <http://www.orgmf.com.ar/condor/pytstuff.html>.
* Get the right funny characters in Hernan's name.Tim Peters2002-04-191-1/+1
|
* \idxcode -> \py@idxcode (mimics index stuff in python.sty - problem onlySkip Montanaro2002-04-191-3/+3
| | | | revealed itself when i added index generating lines to doc/doc.tex)
* fix duplicate labelSkip Montanaro2002-04-191-1/+5
| | | | add index turds
* Clean up the use of version numbers in filenames; always use an "abstract"Fred Drake2002-04-191-6/+17
| | | | | version number, and explain what it is at the top of the chapter. This closes SF bug #225003.
* Long-forgotten change: Update first paragraph with actual release dateAndrew M. Kuchling2002-04-181-5/+3
|
* typoSkip Montanaro2002-04-171-1/+1
|