Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix peculiar (and ungrammatical) wording in an example program. | Greg Ward | 2002-08-22 | 1 | -2/+2 |
| | |||||
* | Give the section on PEP 263 a more meaningful title, so readers will | Fred Drake | 2002-08-22 | 1 | -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 is | Fred Drake | 2002-08-22 | 1 | -0/+2 |
| | | | | completely equivalent. | ||||
* | Added a main() function and support to run this module as a script. | Fred Drake | 2002-08-21 | 1 | -2/+14 |
| | | | | Closes SF feature request #588768. | ||||
* | Clarify that even though some of the relevant specifications define the | Fred Drake | 2002-08-21 | 1 | -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 Hettinger | 2002-08-21 | 1 | -7/+7 |
| | | | | Though slightly slower, has better clarity and teaching value. | ||||
* | Clarify the endpos argument to the rx.match() method. | Fred Drake | 2002-08-20 | 1 | -2/+6 |
| | | | | Closes SF bug #597177. | ||||
* | Cover the sets module. | Andrew M. Kuchling | 2002-08-20 | 1 | -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, because | Andrew M. Kuchling | 2002-08-20 | 1 | -67/+104 |
| | | | | | the list is getting awfully long Mention Karatsuba multiplication and some other items | ||||
* | Add versionadded for operator.pow | Neal Norwitz | 2002-08-19 | 1 | -0/+1 |
| | |||||
* | Extend some comments on the order of values in the returns from | Fred Drake | 2002-08-19 | 1 | -8/+14 |
| | | | | dict.items/keys/values/iteritems/iterkeys/itervalues(). | ||||
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 1 | -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 of | Raymond Hettinger | 2002-08-19 | 1 | -0/+7 |
| | | | | | | all operators having a counterpart in the operator module. Closes SF bug #577513. | ||||
* | This is my patch | Michael W. Hudson | 2002-08-15 | 4 | -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' change | Andrew M. Kuchling | 2002-08-15 | 1 | -3/+29 |
| | | | | | Revise sentence Add two reminders | ||||
* | Py_InitModule() and friends now accept NULL for the 'methods' | Fred Drake | 2002-08-14 | 1 | -0/+9 |
| | | | | | argument. This makes sense now that extension types can support __init__ directly rather than requiring function constructors. | ||||
* | More updates describing FutureWarnings. | Barry Warsaw | 2002-08-14 | 3 | -1/+13 |
| | |||||
* | mkstemp's last argument changed from binary=True to text=False. | Tim Peters | 2002-08-14 | 1 | -2/+2 |
| | |||||
* | Document PyExc_FutureWarning | Barry Warsaw | 2002-08-14 | 1 | -4/+4 |
| | |||||
* | Remove a broken example of extreme backward compatibility; it is | Fred Drake | 2002-08-14 | 1 | -21/+0 |
| | | | | | simply not relevant any more. Closes SF bug #595032. | ||||
* | The auto-reply text for the python-docs address. This is not automatically | Fred Drake | 2002-08-12 | 1 | -0/+171 |
| | | | | updated when checkins are made, but I can get that updated when needed. | ||||
* | Accomodate the packaging changes when we unpack into the dev/doc/ area | Fred Drake | 2002-08-09 | 1 | -1/+2 |
| | | | | on python.org. | ||||
* | Lots of changes to the packaging of the documentation, all to keep | Fred Drake | 2002-08-09 | 2 | -42/+72 |
| | | | | | | | | directories clean where the packages are unpacked. Each package now contains a single directory, Python-Docs-<version>/, which contains the files for that version of the documentation. Closes SF feature request #567576. | ||||
* | Doc portion of SF 589982 (tempfile.py rewrite, by Zack Weinberg). | Guido van Rossum | 2002-08-09 | 1 | -42/+160 |
| | | | | Fred, please review! | ||||
* | GvR pointed out that only enclosing function bodies are part of nested scopes. | Raymond Hettinger | 2002-08-07 | 1 | -5/+5 |
| | |||||
* | Document that heappop() and heapreplace() raise IndexError if the heap | Guido van Rossum | 2002-08-07 | 1 | -1/+2 |
| | | | | is empty. | ||||
* | Apply character{} markup. | Raymond Hettinger | 2002-08-07 | 1 | -16/+17 |
| | |||||
* | Described responsibilty of weakly referenced extension types to initialize | Raymond Hettinger | 2002-08-07 | 1 | -2/+23 |
| | | | | | the weakreflist to NULL in the constructor and to fill the tp_flags slot with Py_TPFLAGS_HAVE_WEAKREFS. Closes SF bug 586583. | ||||
* | Describe nested scopes in the tutorial. Closes SF bug 500704. | Raymond Hettinger | 2002-08-07 | 1 | -6/+11 |
| | |||||
* | Documented os.fsync and os.fdatasync. Closes SF bug 584695. | Raymond Hettinger | 2002-08-07 | 1 | -0/+11 |
| | |||||
* | Clarify that the bool instances are acceptable return values from | Fred Drake | 2002-08-07 | 1 | -4/+5 |
| | | | | __nonzero__(), in response to SF bug #579991. | ||||
* | Fix up some more markup problems. | Fred Drake | 2002-08-07 | 1 | -8/+9 |
| | |||||
* | Change the markup a bit more; the parameter was not marked as \var in the | Fred Drake | 2002-08-07 | 1 | -4/+8 |
| | | | | sample code, and the note was marked as a logical thing. | ||||
* | Fix markup errors. | Steve Holden | 2002-08-07 | 1 | -3/+3 |
| | |||||
* | Document handling of raw-unicode-escapes. Closes SF bug 587087. | Raymond Hettinger | 2002-08-06 | 1 | -0/+8 |
| | |||||
* | Added a note about the inability to specify a pathname to a non-existing | Jack Jansen | 2002-08-06 | 1 | -1/+7 |
| | | | | file in unix-Python. | ||||
* | Changed a sentence that confused some people. | Jack Jansen | 2002-08-06 | 1 | -2/+2 |
| | |||||
* | Fix the markup so it doesn't break formatting. | Fred Drake | 2002-08-06 | 1 | -4/+4 |
| | |||||
* | Added references to the email package. | Fred Drake | 2002-08-06 | 3 | -2/+11 |
| | | | | Closes SF bug #586937. | ||||
* | Add some fine points: METH_KEYWORDS implies METH_VARARGS, and ob_size | Guido van Rossum | 2002-08-06 | 1 | -6/+10 |
| | | | | is no longer unused in type objects. | ||||
* | Remove mention of deprecated xreadlines method. | Guido van Rossum | 2002-08-06 | 1 | -2/+2 |
| | |||||
* | Document file.next(). Mark xreadlines obsolete (both method and | Guido van Rossum | 2002-08-06 | 2 | -9/+26 |
| | | | | | module). (One thing remains to be done: the gzip class has an xreadline method; this ought to be replaced by an iterator as well.) | ||||
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 1 | -8/+13 |
| | | | | string of longer than 1 character. | ||||
* | Add comment about os.path.walk()'s behavior with symbolic links. | Steve Holden | 2002-08-06 | 1 | -0/+5 |
| | |||||
* | Mention list.sort() | Andrew M. Kuchling | 2002-08-06 | 1 | -8/+89 |
| | | | | | | Document heapq module Add PEP263 section (not sure I really understand the PEP's effect on 8-bit strings, though -- will have to experiment with it) | ||||
* | SF patch #591305 Documentation err in bytecode defs | Neal Norwitz | 2002-08-05 | 1 | -1/+1 |
| | |||||
* | Note that True and False are pickable objects | Raymond Hettinger | 2002-08-05 | 1 | -1/+1 |
| | |||||
* | Patch #534304: Implement phase 1 of PEP 263. | Martin v. Löwis | 2002-08-04 | 1 | -5/+39 |
| | |||||
* | Remove a syntax error in the example, spotted by Walter Hofman. | Steve Holden | 2002-08-04 | 1 | -1/+1 |
| | |||||
* | Add two reminders | Andrew M. Kuchling | 2002-08-04 | 1 | -0/+4 |
| |