summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Revise text about the level of DOM support, and provide pointers toFred Drake2002-09-111-23/+32
| | | | | | | the work of the XML-SIG in the main body of the text. Modify the markup in a few places to avoid wrapping lines in bad places, and just general cleanliness.
* Remove mentioning of Python 2.0 limitations. Fixes #607783.Martin v. Löwis2002-09-111-10/+10
|
* Clarify who maintains Tkinter and who maintains Tk.Fred Drake2002-09-101-3/+4
|
* Document type and semantics of the tp_print return value. Closes SF 606464.Raymond Hettinger2002-09-101-1/+3
|
* Always generate floats for stat_result; fix configure test.Martin v. Löwis2002-09-091-6/+5
|
* Patch #606592: Subsecond timestamps in stat_result.Martin v. Löwis2002-09-091-0/+3
|
* Fix typo. Close SF Bug 606354.Raymond Hettinger2002-09-081-1/+1
|
* Clarified that the footnote applies to versions 1.5 and after instead ofRaymond Hettinger2002-09-081-4/+4
| | | | just version 1.5. Closes SF bug 577793.
* Fix API typo. The write buffer is not const. Closes SF 606216.Raymond Hettinger2002-09-081-1/+1
|
* tightened up the definition of \b and \B some more based upon discussionSkip Montanaro2002-09-071-7/+11
| | | | after the last checkin.
* Added a tutorial note and example regarding the scope of loop variablesRaymond Hettinger2002-09-061-0/+13
| | | | | | | in a list comprehension. Includes a justification and a comparision to regular for-loops. Closes SF bug 605047.
* Apply diff3.txt (plus additional documentation)Walter Dörwald2002-09-061-0/+25
| | | | | | | | | from SF patch http://www.python.org/sf/554192 This adds two new functions to mimetypes: guess_all_extensions() which returns a list of all known extensions for a mime type, and add_type() which adds one mapping between a mime type and an extension.
* update docs to reflect that \b considers underscore to be part of a word.Skip Montanaro2002-09-061-2/+2
|
* Fix typoRaymond Hettinger2002-09-041-1/+1
|
* Fix typoRaymond Hettinger2002-09-041-1/+1
|
* expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.Skip Montanaro2002-09-031-0/+6
|
* Ignore encoding declarations inside strings. Fixes #603509.Martin v. Löwis2002-09-031-1/+1
|
* Add reminder about PEP293Andrew M. Kuchling2002-09-031-0/+14
|
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-022-1/+59
|
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-302-14/+2
| | | | | | | | | | Use a slightly different strategy to determine when not to call the line trace function. This removes the need for the RETURN_NONE opcode, so that's gone again. Update docs and comments to match. Thanks to Neal and Armin! Also add a test suite. This should have come with the original patch...
* add warning about exception messagesSkip Montanaro2002-08-281-0/+7
|
* Note change in behavior from 1.5.2. The new argument to NameError isRaymond Hettinger2002-08-271-2/+2
| | | | | | an error message and not just the missing name. Closes SF Bug 599869.
* Add strong security warning about the rexec module.Fred Drake2002-08-271-5/+17
| | | | | | Closes SF patch #600861. Minor markup changes.
* Don't use tempfile.mktemp(), since it produces annoying warnings, andFred Drake2002-08-271-5/+6
| | | | usually isn't what we want anyway.
* Implemented <, <=, >, >= for sets, giving subset and proper-subsetTim Peters2002-08-251-5/+12
| | | | | | meanings. I did not add new, e.g., ispropersubset() methods; we're going nuts on those, and, e.g., there was no "friendly name" for == either.
* Correct documentation of allow_reuse_address to match the actual script.Raymond Hettinger2002-08-251-1/+1
| | | | Closes SF bug 599681.
* Removed < <= > >= from the API. Implemented as comparisons of theRaymond Hettinger2002-08-241-3/+2
| | | | | | | | underlying dictionaries, there were no reasonable use cases (lexicographic sorting of a list of sets is somewhat esoteric). Frees the operators for other uses (such as strict subset and superset comparisons). Updated documentation and test suite accordingly.
* Fix typo reported to python-docs.Fred Drake2002-08-231-1/+1
|
* Fix markup and punctuationRaymond Hettinger2002-08-231-4/+4
|
* s/_as_Temporarily_Immutable/_as_temporarily_immutable/g, because theTim Peters2002-08-231-2/+2
| | | | latter is what the code actually does.
* pop(): An arbitrary element is removed, not a random element.Tim Peters2002-08-231-1/+2
|
* Adjust the markup in a few places so this will actually format.Fred Drake2002-08-231-92/+89
| | | | Remove the third column in the tables since it isn't used.
* Add an entry for the sets module documentation.Fred Drake2002-08-231-1/+2
| | | | | Move another entry so the boilerplate doesn't get mixed up with document-specific content.
* Load docs for sets.pyRaymond Hettinger2002-08-232-0/+220
|
* Fix peculiar (and ungrammatical) wording in an example program.Greg Ward2002-08-221-2/+2
|
* Give the section on PEP 263 a more meaningful title, so readers willFred Drake2002-08-221-1/+1
| | | | be able to locate this information without knowing the PEP number.
* Add a note that apply() is needed since the extended call syntax isFred Drake2002-08-221-0/+2
| | | | completely equivalent.
* Added a main() function and support to run this module as a script.Fred Drake2002-08-211-2/+14
| | | | Closes SF feature request #588768.
* Clarify that even though some of the relevant specifications define theFred Drake2002-08-211-8/+10
| | | | | | | order in which form variables should be encoded in a request, a CGI script should not rely on that since a client may not conform to those specs, or they may not be relevant to the request. Closes SF bug #596866.
* Replace all cases of "while 1" with "while True".Raymond Hettinger2002-08-211-7/+7
| | | | Though slightly slower, has better clarity and teaching value.
* Clarify the endpos argument to the rx.match() method.Fred Drake2002-08-201-2/+6
| | | | Closes SF bug #597177.
* Cover the sets module.Andrew M. Kuchling2002-08-201-0/+95
| | | | | (There's a link to PEP218; has PEP218 been updated to match the actual module implementation?)
* Create two subsections of the "Core Language Changes" section, becauseAndrew M. Kuchling2002-08-201-67/+104
| | | | | the list is getting awfully long Mention Karatsuba multiplication and some other items
* Add versionadded for operator.powNeal Norwitz2002-08-191-0/+1
|
* Extend some comments on the order of values in the returns fromFred Drake2002-08-191-8/+14
| | | | dict.items/keys/values/iteritems/iterkeys/itervalues().
* SF patch 576101, by Oren Tirosh: alternative implementation ofGuido van Rossum2002-08-191-2/+4
| | | | | | | | interning. I modified Oren's patch significantly, but the basic idea and most of the implementation is unchanged. Interned strings created with PyString_InternInPlace() are now mortal, and you must keep a reference to the resulting string around; use the new function PyString_InternImmortal() to create immortal interned strings.
* Added __pow__(a,b) to the operator module. Completes the pattern ofRaymond Hettinger2002-08-191-0/+7
| | | | | | all operators having a counterpart in the operator module. Closes SF bug #577513.
* This is my patchMichael W. Hudson2002-08-154-24/+52
| | | | | | | | [ 587993 ] SET_LINENO killer Remove SET_LINENO. Tracing is now supported by inspecting co_lnotab. Many sundry changes to document and adapt to this change.
* Add 'in' changeAndrew M. Kuchling2002-08-151-3/+29
| | | | | Revise sentence Add two reminders
* Py_InitModule() and friends now accept NULL for the 'methods'Fred Drake2002-08-141-0/+9
| | | | | argument. This makes sense now that extension types can support __init__ directly rather than requiring function constructors.