summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix SF bug #697256, PyMarshal_WriteShortToFile() documented, but not implementedNeal Norwitz2003-03-061-6/+0
| | | | Remove prototype and doc. Backport candidate.
* Describe Charset.__repr__().Barry Warsaw2003-03-061-0/+1
|
* Describe the new Header.encode() argument "splitchars".Barry Warsaw2003-03-061-2/+5
|
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-051-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) wipedMichael W. Hudson2003-03-051-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 beforeMichael W. Hudson2003-03-051-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 SIGAndrew M. Kuchling2003-03-042-2/+2
|
* Weaken recommendation of Friedl book; fix referenceAndrew M. Kuchling2003-03-041-4/+4
|
* [bug #692016] update description of {m,n} modifier; you can omit the lower boundAndrew M. Kuchling2003-03-041-3/+4
|
* [bug #696771] Remove misleading parenthetical asideAndrew M. Kuchling2003-03-041-2/+0
|
* Patch #683592 revisited, after discussions with MvL:Just van Rossum2003-03-031-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 bugMichael W. Hudson2003-03-031-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 ofGuido van Rossum2003-03-021-0/+22
| | | | calling into Python from a C thread.
* Add updates for alpha2Andrew M. Kuchling2003-03-021-3/+7
|
* Expand itertools paragraphAndrew M. Kuchling2003-03-021-3/+9
|
* - New function sys.exc_clear() clears the current exception. This isGuido van Rossum2003-03-012-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 someGuido van Rossum2003-02-281-8/+54
| | | | stuff, and changed 'property' to 'descriptor'.
* Update PyPI linkAndrew M. Kuchling2003-02-261-5/+2
|
* [Bug #693474, reported by Stuart Bishop]Andrew M. Kuchling2003-02-261-5/+8
| | | | Fix errors in the list of setup() arguments
* Documented linkmodel and WMAvailable().Jack Jansen2003-02-241-4/+26
|
* Fix SF bug #691276, shutil.copytree documentation bugNeal Norwitz2003-02-231-1/+4
|
* User requested changes to the itertools module.Raymond Hettinger2003-02-231-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 fewMichael W. Hudson2003-02-211-2/+2
| | | | seconds making the doc for get_completer marginally less minimal :)
* Add some minimal doc for get_completer added for patch 676342Neal Norwitz2003-02-211-0/+5
|
* Fill in missing table entries.Raymond Hettinger2003-02-211-1/+5
|
* SF bug #685775: turtle circle() documentation errorRaymond Hettinger2003-02-211-4/+5
|
* SF bug #690377: Dud footnote reference in distutils docsRaymond Hettinger2003-02-211-2/+2
|
* Markup and nits.Raymond Hettinger2003-02-211-12/+11
|
* Add some notes about HIGHEST_PROTOCOL.Neal Norwitz2003-02-211-4/+15
|
* Added a note about the new itertools module. (Omission noted byFred Drake2003-02-191-0/+4
| | | | Gerrit Holl in email to python-docs.)
* logging.warn() renamed to warning()Andrew M. Kuchling2003-02-191-3/+3
|
* Bump version number.Fred Drake2003-02-182-2/+2
|
* SF patch #687683, Patches to logging (updates from Vinay)Neal Norwitz2003-02-181-10/+11
| | | | | | Mostly rename WARN -> WARNING Other misc tweaks Update tests (not in original patch)
* Add two acks; bump version numberAndrew M. Kuchling2003-02-181-3/+3
|
* [Bug #688261] Fix optparse example and outputAndrew M. Kuchling2003-02-181-2/+5
|
* [Bug #683416] Make PEP263 coverage a bit more explicit, and add it to theAndrew M. Kuchling2003-02-181-6/+14
| | | | porting section
* Fix SF bug #687655, String formatting conversions misleadingNeal Norwitz2003-02-171-1/+1
|
* Migrate definitions of several platform-dependent path-related variablesSkip Montanaro2003-02-141-0/+7
| | | | into the relevant path modules. See patch #686397.
* extsep description:Fred Drake2003-02-141-2/+3
| | | | | | - avoid "e.g." in text - record version information (should be backported)
* add missing description of os.extsepSkip Montanaro2003-02-141-0/+5
|
* SF bug #663701: sets module reviewRaymond Hettinger2003-02-141-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 Hettinger2003-02-141-1/+1
|
* Remove deps on mac doc files which have been removedNeal Norwitz2003-02-141-2/+0
|
* first cut at a shell script to view a single section from the librarySkip Montanaro2003-02-131-0/+129
| | | | reference manual
* Try to doc the new pickle details being implemented as part of PEP 307.Neal Norwitz2003-02-131-7/+63
| | | | Needs review.
* Cleanup from patch #683257:Neal Norwitz2003-02-121-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 Jansen2003-02-1212-384/+199
|
* Unparenting BZ2File, as discussed in SF patch #661796.Gustavo Niemeyer2003-02-111-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Modules/bz2module.c (BZ2FileObject): Now the structure includes a pointer to a file object, instead of "inheriting" one. Also, some members were copied from the PyFileObject structure to avoid dealing with the internals of that structure from outside fileobject.c. (Util_GetLine,Util_DropReadAhead,Util_ReadAhead,Util_ReadAheadGetLineSkip, BZ2File_write,BZ2File_writelines,BZ2File_init,BZ2File_dealloc, BZ2Comp_dealloc,BZ2Decomp_dealloc): These functions were adapted to the change above. (BZ2File_seek,BZ2File_close): Use PyObject_CallMethod instead of getting the function attribute locally. (BZ2File_notsup): Removed, since it's not necessary anymore to overload truncate(), and readinto() with dummy functions. (BZ2File_methods): Added xreadlines() as an alias to BZ2File_getiter, and removed truncate() and readinto(). (BZ2File_get_newlines,BZ2File_get_closed,BZ2File_get_mode,BZ2File_get_name, BZ2File_getset): Implemented getters for "newlines", "mode", and "name". (BZ2File_members): Implemented "softspace" member. (BZ2File_init): Reworked to create a file instance instead of initializing itself as a file subclass. Also, pass "name" object untouched to the file constructor, and use PyObject_CallFunction instead of building the argument tuple locally. (BZ2File_Type): Set tp_new to PyType_GenericNew, tp_members to BZ2File_members, and tp_getset to BZ2File_getset. (initbz2): Do not set BZ2File_Type.tp_base nor BZ2File_Type.tp_new. * Doc/lib/libbz2.tex Do not mention that BZ2File inherits from the file type.
* Remove duplicate word (rules)Neal Norwitz2003-02-111-1/+1
|
* Fix so it compiles at least.Michael W. Hudson2003-02-111-1/+1
| | | | "make lib" takes a while, doesn't it?