Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a little more verbiage about the bsddb module/package change. It's | Skip Montanaro | 2003-03-07 | 1 | -1/+8 |
| | | | | | | clear from recent discussions on c.l.py that people are a bit confused about the differences between the old bsddb, the new bssdb, the bsddb3/PyBSDDB package and changes to file formats. Tried to clarify the issues. | ||||
* | Minor clarification about the ob_size field. | Fred Drake | 2003-03-07 | 1 | -3/+3 |
| | |||||
* | SF patch #693753: fix for bug 639806: default for dict.pop | Raymond Hettinger | 2003-03-06 | 1 | -3/+7 |
| | | | | (contributed by Michael Stone.) | ||||
* | Fix SF bug #697256, PyMarshal_WriteShortToFile() documented, but not implemented | Neal Norwitz | 2003-03-06 | 1 | -6/+0 |
| | | | | Remove prototype and doc. Backport candidate. | ||||
* | Describe Charset.__repr__(). | Barry Warsaw | 2003-03-06 | 1 | -0/+1 |
| | |||||
* | Describe the new Header.encode() argument "splitchars". | Barry Warsaw | 2003-03-06 | 1 | -2/+5 |
| | |||||
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 1 | -0/+16 |
| | | | | | and not as a side effect of setlocale. Expose it as sys.getfilesystemencoding. Adjust test case. | ||||
* | Back in June in revision 1.98 Steve (accidentally, presumably) wiped | Michael W. Hudson | 2003-03-05 | 1 | -29/+74 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | out a month's worth of checkins to libstdtypes.tex (including my extended slice docs). I think this checkin merges them all back in, but if you make one of these checkins: revision 1.97 date: 2002/06/14 00:27:13; author: nnorwitz Use \code{True} (or False) instead of true/false. Not sure if code is correct, but that is what's in this file. I've seen \constant{True} in other places. ---------------------------- revision 1.95 date: 2002/05/22 20:39:43; author: bwarsaw Jack's documentation for the U mode character on the file() constructor, vetted by Barry. ---------------------------- revision 1.94 date: 2002/05/21 18:19:15; author: rhettinger Patch 543387. Document deprecation of complex %, //,and divmod(). ---------------------------- revision 1.93 date: 2002/05/15 15:45:25; author: rhettinger Added missing index entries for mapping methods. Closes patch #548693. some checking may be in order. | ||||
* | I thought it was common practice to check things compiled before | Michael W. Hudson | 2003-03-05 | 1 | -5/+5 |
| | | | | | | | checking them in? Oh well, this fixes various obvious mistakes and changes a subsubsubsection (which doesn't exist) into a subsubsection (which does). I'm not sure this matches the intent, but it seems to read OK on a quick skim. | ||||
* | Point e-mail address at the SIG | Andrew M. Kuchling | 2003-03-04 | 2 | -2/+2 |
| | |||||
* | Weaken recommendation of Friedl book; fix reference | Andrew M. Kuchling | 2003-03-04 | 1 | -4/+4 |
| | |||||
* | [bug #692016] update description of {m,n} modifier; you can omit the lower bound | Andrew M. Kuchling | 2003-03-04 | 1 | -3/+4 |
| | |||||
* | [bug #696771] Remove misleading parenthetical aside | Andrew M. Kuchling | 2003-03-04 | 1 | -2/+0 |
| | |||||
* | Patch #683592 revisited, after discussions with MvL: | Just van Rossum | 2003-03-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | - Implement the behavior as specified in PEP 277, meaning os.listdir() will only return unicode strings if it is _called_ with a unicode argument. - And then return only unicode, don't attempt to convert to ASCII. - Don't switch on Py_FileSystemDefaultEncoding, but simply use the default encoding if Py_FileSystemDefaultEncoding is NULL. This means os.listdir() can now raise UnicodeDecodeError if the default encoding can't represent the directory entry. (This seems better than silcencing the error and fall back to a byte string.) - Attempted to decribe the above in Doc/lib/libos.tex. - Reworded the Misc/NEWS items to reflect the current situation. This checkin also fixes bug #696261, which was due to os.listdir() not using Py_FileSystemDefaultEncoding, like all file system calls are supposed to. | ||||
* | Fix bug | Michael W. Hudson | 2003-03-03 | 1 | -7/+54 |
| | | | | | | | | [ 555817 ] Flawed fcntl.ioctl implementation. with my patch that allows for an array to be mutated when passed as the buffer argument to ioctl() (details complicated by backwards compatibility considerations -- read the docs!). | ||||
* | Commit MvL's doc patch for SF bug #221327. This adds an example of | Guido van Rossum | 2003-03-02 | 1 | -0/+22 |
| | | | | calling into Python from a C thread. | ||||
* | Add updates for alpha2 | Andrew M. Kuchling | 2003-03-02 | 1 | -3/+7 |
| | |||||
* | Expand itertools paragraph | Andrew M. Kuchling | 2003-03-02 | 1 | -3/+9 |
| | |||||
* | - New function sys.exc_clear() clears the current exception. This is | Guido van Rossum | 2003-03-01 | 2 | -8/+29 |
| | | | | | | rarely needed, but can sometimes be useful to release objects referenced by the traceback held in sys.exc_info()[2]. (SF patch #693195.) Thanks to Kevin Jacobs! | ||||
* | SF doc patch #692001, properties and __getattribute__. I added some | Guido van Rossum | 2003-02-28 | 1 | -8/+54 |
| | | | | stuff, and changed 'property' to 'descriptor'. | ||||
* | Update PyPI link | Andrew M. Kuchling | 2003-02-26 | 1 | -5/+2 |
| | |||||
* | [Bug #693474, reported by Stuart Bishop] | Andrew M. Kuchling | 2003-02-26 | 1 | -5/+8 |
| | | | | Fix errors in the list of setup() arguments | ||||
* | Documented linkmodel and WMAvailable(). | Jack Jansen | 2003-02-24 | 1 | -4/+26 |
| | |||||
* | Fix SF bug #691276, shutil.copytree documentation bug | Neal Norwitz | 2003-02-23 | 1 | -1/+4 |
| | |||||
* | User requested changes to the itertools module. | Raymond Hettinger | 2003-02-23 | 1 | -40/+52 |
| | | | | | Subsumed times() into repeat(). Added cycle() and chain(). | ||||
* | I'm am the PyPy sprint waiting for a Grand Renaming so I killed a few | Michael W. Hudson | 2003-02-21 | 1 | -2/+2 |
| | | | | seconds making the doc for get_completer marginally less minimal :) | ||||
* | Add some minimal doc for get_completer added for patch 676342 | Neal Norwitz | 2003-02-21 | 1 | -0/+5 |
| | |||||
* | Fill in missing table entries. | Raymond Hettinger | 2003-02-21 | 1 | -1/+5 |
| | |||||
* | SF bug #685775: turtle circle() documentation error | Raymond Hettinger | 2003-02-21 | 1 | -4/+5 |
| | |||||
* | SF bug #690377: Dud footnote reference in distutils docs | Raymond Hettinger | 2003-02-21 | 1 | -2/+2 |
| | |||||
* | Markup and nits. | Raymond Hettinger | 2003-02-21 | 1 | -12/+11 |
| | |||||
* | Add some notes about HIGHEST_PROTOCOL. | Neal Norwitz | 2003-02-21 | 1 | -4/+15 |
| | |||||
* | Added a note about the new itertools module. (Omission noted by | Fred Drake | 2003-02-19 | 1 | -0/+4 |
| | | | | Gerrit Holl in email to python-docs.) | ||||
* | logging.warn() renamed to warning() | Andrew M. Kuchling | 2003-02-19 | 1 | -3/+3 |
| | |||||
* | Bump version number. | Fred Drake | 2003-02-18 | 2 | -2/+2 |
| | |||||
* | SF patch #687683, Patches to logging (updates from Vinay) | Neal Norwitz | 2003-02-18 | 1 | -10/+11 |
| | | | | | | Mostly rename WARN -> WARNING Other misc tweaks Update tests (not in original patch) | ||||
* | Add two acks; bump version number | Andrew M. Kuchling | 2003-02-18 | 1 | -3/+3 |
| | |||||
* | [Bug #688261] Fix optparse example and output | Andrew M. Kuchling | 2003-02-18 | 1 | -2/+5 |
| | |||||
* | [Bug #683416] Make PEP263 coverage a bit more explicit, and add it to the | Andrew M. Kuchling | 2003-02-18 | 1 | -6/+14 |
| | | | | porting section | ||||
* | Fix SF bug #687655, String formatting conversions misleading | Neal Norwitz | 2003-02-17 | 1 | -1/+1 |
| | |||||
* | Migrate definitions of several platform-dependent path-related variables | Skip Montanaro | 2003-02-14 | 1 | -0/+7 |
| | | | | into the relevant path modules. See patch #686397. | ||||
* | extsep description: | Fred Drake | 2003-02-14 | 1 | -2/+3 |
| | | | | | | - avoid "e.g." in text - record version information (should be backported) | ||||
* | add missing description of os.extsep | Skip Montanaro | 2003-02-14 | 1 | -0/+5 |
| | |||||
* | SF bug #663701: sets module review | Raymond Hettinger | 2003-02-14 | 1 | -4/+4 |
| | | | | Renamed hook methods to use the double underscore convention. | ||||
* | SF bug #663701. The caret wasn't printing well in the PDF documentation. | Raymond Hettinger | 2003-02-14 | 1 | -1/+1 |
| | |||||
* | Remove deps on mac doc files which have been removed | Neal Norwitz | 2003-02-14 | 1 | -2/+0 |
| | |||||
* | first cut at a shell script to view a single section from the library | Skip Montanaro | 2003-02-13 | 1 | -0/+129 |
| | | | | reference manual | ||||
* | Try to doc the new pickle details being implemented as part of PEP 307. | Neal Norwitz | 2003-02-13 | 1 | -7/+63 |
| | | | | Needs review. | ||||
* | Cleanup from patch #683257: | Neal Norwitz | 2003-02-12 | 1 | -0/+13 |
| | | | | | | | Add missing INCREFs and re-indent returns to be consistent. Add \n\ for lines in docstring Add a pathetic test Add docs | ||||
* | Updated the Mac documentation to the current state of affairs. | Jack Jansen | 2003-02-12 | 12 | -384/+199 |
| |