summaryrefslogtreecommitdiff
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* update text to refer to ServerProxy class in preference to Server, which isSkip Montanaro2002-03-141-8/+11
| | | | only retained for backward compatibility with older versions of the library.
* Describe how to support the iterator protocol in extension types.Fred Drake2002-03-131-4/+60
| | | | This closes SF bug #420851.
* Extend the list of special characters and magic markup used to produce themFred Drake2002-03-131-6/+10
| | | | | | to include various characters used in code samples, URLs, and other special contexts. This closes SF bug #525684.
* Change the way \textasciitilde is implemented so it works more consistentlyFred Drake2002-03-131-1/+1
| | | | | (dropping tildes into data that still goes through LaTeX-like processing is a bad idea).
* Add a note that Py_None needs the same reference count treatment as anyFred Drake2002-03-121-1/+2
| | | | | other PyObject *. This closes SF bug #494007.
* "level" keyword argument in example should be "stacklevel".Fred Drake2002-03-121-1/+1
| | | | This closes SF bug #517684.
* Change Windows file.truncate() to (a) restore the original file position,Tim Peters2002-03-121-13/+18
| | | | | | | | | | | | and (b) stop trying to prevent file growth. Beef up the file.truncate() docs. Change test_largefile.py to stop assuming that f.truncate() moves the file pointer to the truncation point, and to verify instead that it leaves the file position alone. Remove the test for what happens when a specified size exceeds the original file size (it's ill-defined, according to the Single Unix Spec).
* Documentation for PyObject_GetIter(), contributed by Greg ChapmanFred Drake2002-03-111-3/+18
| | | | | (with only minor changes by Fred). This closes SF bug #498607.
* Make the extension manual format using the Makefile; recent changes brokeFred Drake2002-03-111-1/+1
| | | | the dependency information.
* file_truncate(): provide full "large file" support on Windows, byTim Peters2002-03-111-3/+2
| | | | | | | | | | | | | | | | | | | | dropping MS's inadequate _chsize() function. This was inspired by SF patch 498109 ("fileobject truncate support for win32"), which I rejected. libstdtypes.tex: Someone who knows should update the availability blurb. For example, if it's available on Linux, it would be good to say so. test_largefile: Uncommented the file.truncate() tests, and reworked to do more. The old comment about "permission errors" in the truncation tests under Windows was almost certainly due to that the file wasn't open for *write* access at this point, so of course MS wouldn't let you truncate it. I'd be appalled if a Unixish system did. CAUTION: Someone should run this test on Linux (etc) too. The truncation part was commented out before. Note that test_largefile isn't run by default.
* Patch #500136: Update Update ext build documentation. 2.2.1 candidate.Martin v. Löwis2002-03-094-190/+148
|
* Add more explanation of how data_files is used (esp. where the files end upFred Drake2002-03-081-2/+13
| | | | in the installation and how that location is determined).
* [Bug #486527] Note that the caller has to ensure there are no controlAndrew M. Kuchling2002-03-081-2/+12
| | | | | | | characters in strings being passed via XML-RPC. Fix some typos. 2.2.1 bugfix candidate.
* Add entry for mac/libscrap.tex.Fred Drake2002-03-081-1/+2
|
* I started writing more documentation on the Scrap module at one point, butFred Drake2002-03-082-15/+43
| | | | | | it is difficult to do without a Mac box to try things out on. This expands on what was there only a little bit; hopefully someone with a Mac can work on this as well!
* add SSL class submitted by Tino LangePiers Lauder2002-03-081-3/+23
|
* "Shortcut" should be "short-circuit".Fred Drake2002-03-081-6/+7
| | | | This closes SF bug #526277.
* Added missing version annotation for dict().Fred Drake2002-03-061-0/+2
|
* Add implementations for \textgreater and \textless, defined in (relatively)Fred Drake2002-03-051-0/+2
| | | | recent versions of LaTeX2e but not support in LaTeX2HTML.
* Remove extra indenatation from sample interpreter session.Fred Drake2002-03-051-11/+11
| | | | | Remove whitespace from the middle of an inline RE example; it was OK for the typeset formats, but LaTeX2HTML is more touchy about this.
* add simple example of avoiding backtrackingSkip Montanaro2002-03-041-6/+22
|
* Patch #523268, #522027: return enhanced tuples.Martin v. Löwis2002-03-011-3/+4
|
* Patch #523268, #522027: return enhanced tuples.Martin v. Löwis2002-03-011-3/+4
|
* Patch 520694: arraymodule.c improvements:Martin v. Löwis2002-03-011-11/+29
| | | | | | - make array.array a type - add Py_UNICODE arrays - support +=, *=
* Add 2002 to PSF copyrights.Michael W. Hudson2002-02-272-3/+3
| | | | | Doc/README is odd; it assigns some copyright to the PSF in 2000, when I didn't think it existed...
* Fix error in explanation of the interaction between $ and MULTILINE mode.Fred Drake2002-02-251-1/+1
| | | | Reported by Steve Alexander.
* SF bug #501591: dir() doc is oldTim Peters2002-02-231-9/+22
| | | | | | | | | | | | | | Bugfix candidate. + Updated dir() description to match actual 2.2 behavior. + Replaced the dir(sys) example with dir(struct), because the former was way out of date and is bound to change frequently, while the latter is stable. + Added a note cautioning that dir() is supplied primarily for convenience at an interactive prompt (hoping to discourage its use as the foundation of introspective code outside the core).
* Grammar tweak.Greg Ward2002-02-221-1/+1
|
* Typo: thsi -> this. Closes SF bug #521450.Fred Drake2002-02-221-1/+1
|
* Correct the refcount information for the PyWeakref_GetObject() function.Fred Drake2002-02-201-1/+1
| | | | This closes SF bug #520087.
* SF #515041, Update path for 2.3Neal Norwitz2002-02-191-2/+2
|
* Use the standard expression for the availability statement for alarm().Fred Drake2002-02-151-2/+3
|
* note that the alarm function is not available on Windows.Skip Montanaro2002-02-151-4/+4
|
* Added deprecatioon information for mac.xstat().Fred Drake2002-02-151-1/+8
| | | | This closes SF bug #505150.
* The "%" character does not need to be escaped in verbatim environments.Fred Drake2002-02-151-3/+3
| | | | This closes SF bug #517811.
* Consistently use \textasciicircum to produce a ^ character.Fred Drake2002-02-141-18/+25
| | | | LaTeX really falls flat on this one!
* Update the instructions on reporting bugs to reflect that anonymous reportsFred Drake2002-02-041-10/+6
| | | | are no longer accepted.
* When linking to an index page, explicitly name index.html instead ofFred Drake2002-02-042-2/+2
| | | | | using "./". The later does not work nicely when browsing docs on a local disk (as in the installed docs on Windows).
* Update version number to match Include/patchlevel.h.Fred Drake2002-02-041-1/+3
| | | | Make sure we clean up all the temp files craeted for the typeset formats.
* Update version number to match Include/patchlevel.h.Fred Drake2002-02-041-3/+3
|
* Implement os.waitpid() for Windows, in a way that's compatible with LinuxTim Peters2002-02-011-6/+21
| | | | | | where their capabilities intersect. Would be nice if people using non- MSVC compilers (Borland etc) took a whack at doing something similar for them (this code relies on the MS _cwait function).
* added handle_error method descriptionSkip Montanaro2002-01-311-0/+5
|
* Add new constants usable with os.popen() on Windows.Tim Peters2002-01-301-0/+11
| | | | | | | | NOTE: this seems a mess wrt which symbols are available on which platforms. I can't fix it, but I didn't add to it <wink>, and included an XXX comment about names claimed to be available on Windows that aren't. If anyone can figure out the whole ugly truth, I'm sure a better organization will suggest itself.
* Revise cheeseshop example so that the order of the keyword output isFred Drake2002-01-291-1/+8
| | | | | | completely determined by the example; dict insertion order and the string hash algorithm no longer affect the output. This fixes SF bug #509281.
* Document that get_referrers can return unreachable but uncollected objects.Martin v. Löwis2002-01-261-0/+7
| | | | Fixes #505453.
* Add keyword.kwlist to the public API.Fred Drake2002-01-241-1/+8
|
* libkeyword.tex was missing from the list of dependencies for theFred Drake2002-01-241-0/+1
| | | | Library Reference.
* PyDict_Next: update doc to indicate that pkey and pvalue return values areSkip Montanaro2002-01-231-1/+2
| | | | borrowed references.
* add missing return value info for PyDict_DelItemSkip Montanaro2002-01-231-1/+1
|
* Fix typo reported by François Pinard.Fred Drake2002-01-211-1/+1
|