Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF bug 533625 (Armin Rigo). rexec: potential security hole | Guido van Rossum | 2002-05-31 | 1 | -0/+12 |
| | | | | | | | | | | If a rexec instance allows writing in the current directory (a common thing to do), there's a way to execute bogus bytecode. Fix this by not allowing imports from .pyc files (in a way that allows a site to configure things so that .pyc files *are* allowed, if writing is not allowed). I'll apply this to 2.2 and 2.1 too. | ||||
* | Update links and information on PyQt/PyKDE. | Fred Drake | 2002-05-31 | 1 | -6/+13 |
| | |||||
* | As discussed on python-dev, add a mechanism to indicate features | Neal Norwitz | 2002-05-29 | 1 | -0/+5 |
| | | | | | that are in the process of deprecation (PendingDeprecationWarning). Docs could be improved. | ||||
* | This is patch | Michael W. Hudson | 2002-05-27 | 1 | -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 Drake | 2002-05-23 | 1 | -2/+2 |
| | |||||
* | Deprecated Random.cunifvariate clearing bug 506647. Also, added docstrings. | Raymond Hettinger | 2002-05-23 | 1 | -1/+4 |
| | |||||
* | Remove spurious "()" from the __str__() description. | Fred Drake | 2002-05-22 | 1 | -1/+1 |
| | |||||
* | Jack's documentation for the U mode character on the file() | Barry Warsaw | 2002-05-22 | 2 | -0/+27 |
| | | | | constructor, vetted by Barry. | ||||
* | Added a version annotation for StringTypes. | Fred Drake | 2002-05-22 | 1 | -0/+7 |
| | | | | Added documentation for BooleanType. | ||||
* | Minor typo: Message.getall() -> Message.get_all() | Barry Warsaw | 2002-05-22 | 1 | -1/+1 |
| | |||||
* | Patch 543387. Document deprecation of complex %, //,and divmod(). | Raymond Hettinger | 2002-05-21 | 2 | -7/+13 |
| | |||||
* | Patch 533291. Deprecate None return form of __reduce__. | Raymond Hettinger | 2002-05-21 | 1 | -4/+8 |
| | |||||
* | Add availability information for a couple of the types, and notes on writing | Fred Drake | 2002-05-21 | 1 | -5/+10 |
| | | | | string-type tests for versions of Python built without Unicode support. | ||||
* | Patch 547037. Corrected documentation to match | Raymond Hettinger | 2002-05-16 | 1 | -8/+6 |
| | | | | actual module behavior for adding newlines. | ||||
* | Added missing index entries for mapping methods. Closes patch #548693. | Raymond Hettinger | 2002-05-15 | 1 | -1/+7 |
| | |||||
* | Closes SF bug 527139. Brings docs inline with random.py 1.29 | Raymond Hettinger | 2002-05-13 | 1 | -1/+1 |
| | | | | which fixes the unnecessarily restricted method domain. | ||||
* | Correct gammavariate's method name and domain. | Raymond Hettinger | 2002-05-13 | 1 | -2/+2 |
| | | | | Partial solution to SF bug 527139. | ||||
* | Added degrees() and radians() to mathmodule. Closing patch 552452 and | Raymond Hettinger | 2002-05-13 | 1 | -0/+8 |
| | | | | feature request 426539. | ||||
* | Fix markup error that suppressed space. | Fred Drake | 2002-05-10 | 1 | -1/+1 |
| | | | | Closes SF bug #554257. Not relevant to older releases. | ||||
* | Add a note explaining the interaction between unbuffered input and | Fred Drake | 2002-05-06 | 1 | -1/+3 |
| | | | | | xreadlines.xreadlines(). This closes SF patch #552804. | ||||
* | Update the xrange object description to reflect the removal of deprecated | Fred Drake | 2002-05-02 | 1 | -3/+3 |
| | | | | features. | ||||
* | Remove extra period produced by previous change. | Fred Drake | 2002-05-02 | 1 | -3/+3 |
| | |||||
* | Correct information on support for repietition & concatenation for buffer | Fred Drake | 2002-05-02 | 1 | -6/+8 |
| | | | | | and xrange objects. This closes SF bug #550555. | ||||
* | Add Pickler.clear_memo() so the pickle and cPickle modules are more similar. | Fred Drake | 2002-05-01 | 1 | -4/+9 |
| | |||||
* | Explain what os.read() returns at end of file. | Fred Drake | 2002-05-01 | 1 | -1/+3 |
| | | | | This closes SF bug #550409. Applying to release21-maint & release22-maint. | ||||
* | Add missing right-parenthesis. | Fred Drake | 2002-05-01 | 1 | -1/+1 |
| | |||||
* | Add a note about when the "%r" formatting code was added. | Fred Drake | 2002-04-30 | 1 | -0/+1 |
| | |||||
* | Mostly in SequenceMatcher.{__chain_b, find_longest_match}: | Tim Peters | 2002-04-29 | 1 | -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 Drake | 2002-04-26 | 1 | -6/+9 |
| | | | | | getpgrp(), and setpgid(). This closes SF bug #547939. | ||||
* | Be more consistent, both internally and with recommended practice. | Fred Drake | 2002-04-26 | 1 | -4/+2 |
| | | | | This closes SF bug #547953. | ||||
* | Documentation for the enumerate() function/type. | Fred Drake | 2002-04-26 | 1 | -0/+12 |
| | | | | This closes SF patch #547162. | ||||
* | Add text about circular references caused by storing frames in local | Fred Drake | 2002-04-23 | 1 | -0/+16 |
| | | | | variables. This closes SF bug #543148. | ||||
* | WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. | Fred Drake | 2002-04-23 | 1 | -6/+38 |
| | | | | | isatty(), WIFEXITED(), WIFSIGNALED(), WIFSTOPPED(): Changed to return bools instead of ints. | ||||
* | SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) | Anthony Baxter | 2002-04-23 | 1 | -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 request | Walter Dörwald | 2002-04-22 | 1 | -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. | ||||
* | typo | Skip Montanaro | 2002-04-17 | 1 | -1/+1 |
| | |||||
* | Add a version annotation for the help() function. | Fred Drake | 2002-04-17 | 1 | -0/+1 |
| | |||||
* | added small clarification to the descriptions of encode() and decode() | Skip Montanaro | 2002-04-16 | 1 | -2/+6 |
| | |||||
* | Be consistent in presenting the signatures. | Fred Drake | 2002-04-15 | 1 | -1/+1 |
| | |||||
* | Add docs for os.fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+9 |
| | |||||
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 1 | -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öwis | 2002-04-14 | 1 | -0/+11 |
| | |||||
* | Document the optional argument to the .strip(), .rstrip(), .strip() string | Fred Drake | 2002-04-13 | 1 | -8/+20 |
| | | | | | methods. Part of SF feature #444708. | ||||
* | BDFL agreed with Tim: rehabilitate randint(). | Fred Drake | 2002-04-12 | 1 | -1/+0 |
| | |||||
* | Add Raymond Hettinger's d.pop(). See SF patch 539949. | Guido van Rossum | 2002-04-12 | 1 | -0/+3 |
| | |||||
* | Explain octal escapes. Fixes #542226. | Martin v. Löwis | 2002-04-11 | 1 | -5/+3 |
| | |||||
* | Remove mention of 'pre' module | Andrew M. Kuchling | 2002-04-10 | 1 | -9/+0 |
| | | | | (2.2 bugfix candidate?) | ||||
* | document all the valid encoding values | Skip Montanaro | 2002-04-10 | 1 | -1/+4 |
| | |||||
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 6 | -16/+16 |
| | |||||
* | Patch #512005: getrusage() returns struct-like object. | Martin v. Löwis | 2002-04-08 | 1 | -33/+39 |
| |