Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Document new heapreplace() function. | Tim Peters | 2002-08-03 | 1 | -0/+9 |
| | |||||
* | Document new heapify() function. | Tim Peters | 2002-08-03 | 1 | -5/+12 |
| | |||||
* | Minor markup changes. | Fred Drake | 2002-08-02 | 1 | -3/+4 |
| | |||||
* | Add a comment showing how one of the macros should be used. | Fred Drake | 2002-08-02 | 1 | -0/+1 |
| | |||||
* | Add heapq module docs to the dependency information. | Fred Drake | 2002-08-02 | 1 | -0/+1 |
| | |||||
* | Add docs for heapq.py. | Guido van Rossum | 2002-08-02 | 2 | -0/+165 |
| | |||||
* | indicate that 'b' is added to the mode flag if not given | Skip Montanaro | 2002-08-02 | 1 | -2/+2 |
| | |||||
* | Added new footnote about list.sort() stability. Repaired footnote about | Tim Peters | 2002-08-01 | 1 | -4/+12 |
| | | | | | | | | | | using sort() with comparison functions (it made reference to the non- existent "builtin-in function sort()"). BTW, I changed list.sort's docstring to contain the word "stable" -- the easiest way to tell whether a particular Python version's sort *is* stable is to look for "stable" in the docstring. I'm not sure whether to advertise this <wink>. | ||||
* | Replace DL_EXPORT with PyMODINIT_FUNC | Mark Hammond | 2002-07-31 | 1 | -1/+1 |
| | |||||
* | SF patch #581414: info reader bug | Fred Drake | 2002-07-30 | 1 | -1/+3 |
| | | | | | | | | The "Matching vs. Searching" Info node is unreachable from the Info program (but is fine in Emacs's Info mode). This patch seems to fix it. This is the only occurrence where the info reader fails, so probably it could be addressed in the python docs as a workaround. Forwarded the report to the info maintainer. | ||||
* | New functions for extension writers on Windows: | Thomas Heller | 2002-07-29 | 1 | -0/+16 |
| | | | | | | | | | | PyErr_SetExcFromWindowsErr(), PyErr_SetExcFromWindowsErrWithFilename(). Similar to PyErr_SetFromWindowsErrWithFilename() and PyErr_SetFromWindowsErr(), but they allow to specify the exception type to raise. Available on Windows. See SF patch #576458. | ||||
* | Add posix.lchown() | Andrew M. Kuchling | 2002-07-28 | 1 | -2/+1 |
| | |||||
* | Patch #573770: Implement lchown. | Martin v. Löwis | 2002-07-28 | 1 | -0/+7 |
| | |||||
* | Fix SF bug 587012, doc mentions inexistent builtin unistr | Neal Norwitz | 2002-07-28 | 1 | -2/+2 |
| | |||||
* | Small clarifications when referring to the sys.exc_* variables so that | Fred Drake | 2002-07-25 | 1 | -15/+15 |
| | | | | | | readers are not given the wrong impression that they should be using those on a regualar basis. This closes SF bug #585598. | ||||
* | Flesh out description of getlogin() and recommend against using it. | Jeremy Hylton | 2002-07-24 | 1 | -2/+3 |
| | |||||
* | [Bug #580462] Mention changes to GC API | Andrew M. Kuchling | 2002-07-22 | 1 | -84/+116 |
| | | | | | Mention portable strptime() Move C-level sections farther down in the file | ||||
* | Sort changed modules into alphabetical order; no other changes | Andrew M. Kuchling | 2002-07-22 | 1 | -93/+97 |
| | |||||
* | Rewrite a paragraph, and use correct mark-up | Andrew M. Kuchling | 2002-07-22 | 1 | -5/+9 |
| | |||||
* | SF bug #583894, add doc for DL_IMPORT/DL_EXPORT deprecation | Neal Norwitz | 2002-07-22 | 1 | -0/+5 |
| | |||||
* | add versionadded to doc | Neal Norwitz | 2002-07-20 | 1 | -0/+3 |
| | |||||
* | Doc patch from SF 474274 (pure Python strptime by Brett Cannon). | Guido van Rossum | 2002-07-19 | 1 | -7/+0 |
| | |||||
* | Substantially flesh out extended slice section. I think this is probably | Michael W. Hudson | 2002-07-19 | 1 | -0/+83 |
| | | | | done now. | ||||
* | A few days ago, Guido said (in the thread "[Python-Dev] Python | Michael W. Hudson | 2002-07-19 | 1 | -0/+9 |
| | | | | | | | | version of PySlice_GetIndicesEx"): > OK. Michael, if you want to check in indices(), go ahead. Then I did what was needed, but didn't check it in. Here it is. | ||||
* | Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. | Mark Hammond | 2002-07-19 | 1 | -5/+8 |
| | |||||
* | Added documentation for the buffer_text and related attributes of the | Fred Drake | 2002-07-17 | 1 | -0/+23 |
| | | | | xmlparser object provided by pyexpat, new in Python 2.3. | ||||
* | Change staticforward and statichere to just use static. | Fred Drake | 2002-07-17 | 1 | -2/+2 |
| | | | | Removed ^M from some line-ends. | ||||
* | Remove now-obsolete staticforward/statichere discussion. | Fred Drake | 2002-07-17 | 1 | -10/+2 |
| | |||||
* | reduce(): Clarified what is returned in the case of a sequence 1 item long and | Fred Drake | 2002-07-17 | 1 | -6/+6 |
| | | | | initial/default value. | ||||
* | Record the decision that StopIteration is a sink state (see recent | Guido van Rossum | 2002-07-16 | 1 | -0/+7 |
| | | | | | | discussion in python-dev with subject "Termination of two-arg iter()"). Implementation will follow. | ||||
* | Clarify that the description of sys.path[0] is only valid upon program | Guido van Rossum | 2002-07-15 | 1 | -2/+5 |
| | | | | start-up. | ||||
* | Add more items | Andrew M. Kuchling | 2002-07-12 | 1 | -13/+46 |
| | | | | | Use \cfunction instead of \function in various places Add contributor names | ||||
* | Clarify the return value of __nonzero__(): It *must* be an integer. | Fred Drake | 2002-07-12 | 1 | -3/+3 |
| | | | | Closes SF bug #579991. | ||||
* | Make another pass through Misc/NEWS and add stuff. | Andrew M. Kuchling | 2002-07-11 | 1 | -15/+64 |
| | | | | Bump version number. | ||||
* | Add some items | Andrew M. Kuchling | 2002-07-11 | 1 | -113/+159 |
| | | | | | Expand the "Other Language Changes" section Rewrite various passages. |