summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* This is patchMichael W. Hudson2002-05-271-4/+50
| | | | | | | [ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
* Markup adjustments; fix the names of modules referenced in an expression.Fred Drake2002-05-231-2/+2
|
* Deprecated Random.cunifvariate clearing bug 506647. Also, added docstrings.Raymond Hettinger2002-05-231-1/+4
|
* Remove spurious "()" from the __str__() description.Fred Drake2002-05-221-1/+1
|
* Jack's documentation for the U mode character on the file()Barry Warsaw2002-05-222-0/+27
| | | | constructor, vetted by Barry.
* Added a version annotation for StringTypes.Fred Drake2002-05-221-0/+7
| | | | Added documentation for BooleanType.
* Minor typo: Message.getall() -> Message.get_all()Barry Warsaw2002-05-221-1/+1
|
* Patch 543387. Document deprecation of complex %, //,and divmod().Raymond Hettinger2002-05-212-7/+13
|
* Patch 533291. Deprecate None return form of __reduce__.Raymond Hettinger2002-05-211-4/+8
|
* Add availability information for a couple of the types, and notes on writingFred Drake2002-05-211-5/+10
| | | | string-type tests for versions of Python built without Unicode support.
* Patch 547037. Corrected documentation to matchRaymond Hettinger2002-05-161-8/+6
| | | | actual module behavior for adding newlines.
* Added missing index entries for mapping methods. Closes patch #548693.Raymond Hettinger2002-05-151-1/+7
|
* Closes SF bug 527139. Brings docs inline with random.py 1.29Raymond Hettinger2002-05-131-1/+1
| | | | which fixes the unnecessarily restricted method domain.
* Correct gammavariate's method name and domain.Raymond Hettinger2002-05-131-2/+2
| | | | Partial solution to SF bug 527139.
* Added degrees() and radians() to mathmodule. Closing patch 552452 andRaymond Hettinger2002-05-131-0/+8
| | | | feature request 426539.
* Fix markup error that suppressed space.Fred Drake2002-05-101-1/+1
| | | | Closes SF bug #554257. Not relevant to older releases.
* Add a note explaining the interaction between unbuffered input andFred Drake2002-05-061-1/+3
| | | | | xreadlines.xreadlines(). This closes SF patch #552804.
* Update the xrange object description to reflect the removal of deprecatedFred Drake2002-05-021-3/+3
| | | | features.
* Remove extra period produced by previous change.Fred Drake2002-05-021-3/+3
|
* Correct information on support for repietition & concatenation for bufferFred Drake2002-05-021-6/+8
| | | | | and xrange objects. This closes SF bug #550555.
* Add Pickler.clear_memo() so the pickle and cPickle modules are more similar.Fred Drake2002-05-011-4/+9
|
* Explain what os.read() returns at end of file.Fred Drake2002-05-011-1/+3
| | | | This closes SF bug #550409. Applying to release21-maint & release22-maint.
* Add missing right-parenthesis.Fred Drake2002-05-011-1/+1
|
* Add a note about when the "%r" formatting code was added.Fred Drake2002-04-301-0/+1
|
* Mostly in SequenceMatcher.{__chain_b, find_longest_match}:Tim Peters2002-04-291-14/+18
| | | | | | | | | | | | This now does a dynamic analysis of which elements are so frequently repeated as to constitute noise. The primary benefit is an enormous speedup in find_longest_match, as the innermost loop can have factors of 100s less potential matches to worry about, in cases where the sequences have many duplicate elements. In effect, this zooms in on sequences of non-ubiquitous elements now. While I like what I've seen of the effects so far, I still consider this experimental. Please give it a try!
* Slightly expand and clarify the differences between getegid(), getgid(),Fred Drake2002-04-261-6/+9
| | | | | getpgrp(), and setpgid(). This closes SF bug #547939.
* Be more consistent, both internally and with recommended practice.Fred Drake2002-04-261-4/+2
| | | | This closes SF bug #547953.
* Documentation for the enumerate() function/type.Fred Drake2002-04-261-0/+12
| | | | This closes SF patch #547162.
* Add text about circular references caused by storing frames in localFred Drake2002-04-231-0/+16
| | | | variables. This closes SF bug #543148.
* WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New.Fred Drake2002-04-231-6/+38
| | | | | isatty(), WIFEXITED(), WIFSIGNALED(), WIFSTOPPED(): Changed to return bools instead of ints.
* SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL)Anthony Baxter2002-04-231-3/+9
| | | | | | | | | | | | closes SF #514433 can now pass 'None' as the filename for the bsddb.*open functions, and you'll get an in-memory temporary store. docs are ripped out of the bsddb dbopen man page. Fred may want to clean them up. Considering this for 2.2, but not 2.1.
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-221-7/+18
| | | | | | | | | http://www.python.org/sf/444708 This adds the optional argument for str.strip to unicode.strip too and makes it possible to call str.strip with a unicode argument and unicode.strip with a str argument.
* typoSkip Montanaro2002-04-171-1/+1
|
* Add a version annotation for the help() function.Fred Drake2002-04-171-0/+1
|
* added small clarification to the descriptions of encode() and decode()Skip Montanaro2002-04-161-2/+6
|
* Be consistent in presenting the signatures.Fred Drake2002-04-151-1/+1
|
* Add docs for os.fchdir().Fred Drake2002-04-151-0/+9
|
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-151-0/+6
| | | | | | | | | | Add a method zfill to str, unicode and UserString and change Lib/string.py accordingly. This activates the zfill version in unicodeobject.c that was commented out and implements the same in stringobject.c. It also adds the test for unicode support in Lib/string.py back in and uses repr() instead() of str() (as it was before Lib/string.py 1.62)
* Patch #543447: Add posix.mknod.Martin v. Löwis2002-04-141-0/+11
|
* Document the optional argument to the .strip(), .rstrip(), .strip() stringFred Drake2002-04-131-8/+20
| | | | | methods. Part of SF feature #444708.
* BDFL agreed with Tim: rehabilitate randint().Fred Drake2002-04-121-1/+0
|
* Add Raymond Hettinger's d.pop(). See SF patch 539949.Guido van Rossum2002-04-121-0/+3
|
* Explain octal escapes. Fixes #542226.Martin v. Löwis2002-04-111-5/+3
|
* Remove mention of 'pre' moduleAndrew M. Kuchling2002-04-101-9/+0
| | | | (2.2 bugfix candidate?)
* document all the valid encoding valuesSkip Montanaro2002-04-101-1/+4
|
* Update docs for bool changes by Guido around April 6Neal Norwitz2002-04-096-16/+16
|
* Patch #512005: getrusage() returns struct-like object.Martin v. Löwis2002-04-081-33/+39
|
* Do not call "knee" a standard module, and point to the new location.Fred Drake2002-04-081-3/+3
| | | | This addresses the issue in SF bug #515745.
* Update doc to reflect Tim's changes to bool.Neal Norwitz2002-04-058-27/+28
|
* Add a version annotation regarding the urlopen(proxies={...}).Fred Drake2002-04-041-0/+2
|