Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add Tkinter threading change | Andrew M. Kuchling | 2002-12-13 | 1 | -3/+17 |
| | | | | | Fix markup errors Rewrite a sentence | ||||
* | Description of description was really confusing, and added some markup. | Thomas Heller | 2002-12-12 | 1 | -10/+10 |
| | |||||
* | Raw documentation for the bdist_wininst postinstallation script. | Thomas Heller | 2002-12-12 | 1 | -0/+78 |
| | | | | | | | | | | People are already using it, so these docs are certainly better than no docs at all. Markup is mostly missing and the layout is probably ugly, but this can be fixed later. Question: there are references to MS docs for the CSIDL_... constants and the IShellLink interface. Are these pointers sufficient, or should the MS docs reworded and repeated here? | ||||
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 2 | -8/+15 |
| | | | | | | | | | | | supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608. | ||||
* | Patch #651621, approved by MvL. | Just van Rossum | 2002-12-12 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | This patch allows ZipFile.writestr() to be called with an archive file name instead of a ZipInfo instance: z = ZipFile("myarchive.zip", "w") z.writestr("foo/baz/file.ext", data) z.close() I found the old writestr() method very inconvenient for simple (but common) things. If called with a file name instead of a ZipInfo instance, the date_time is set to the current date/time, which makes sense to me for anonymous data. | ||||
* | Various additions and changes suggested by Raymond Hettinger | Andrew M. Kuchling | 2002-12-11 | 1 | -16/+85 |
| | |||||
* | Patch #651006: Better explain what component might be empty. | Martin v. Löwis | 2002-12-11 | 1 | -1/+1 |
| | |||||
* | Update comments about the performance of xrange(). | Raymond Hettinger | 2002-12-11 | 1 | -2/+2 |
| | |||||
* | Added a word to the heapq description in response to user confusion. | Tim Peters | 2002-12-10 | 1 | -2/+3 |
| | |||||
* | Add support for binary pickles to the shelve module. In some situations | Skip Montanaro | 2002-12-08 | 1 | -4/+34 |
| | | | | | | | | this can result in significantly smaller files. All classes as well as the open function now accept an optional binary parameter, which defaults to False for backward compatibility. Added a small test suite, updated the libref documentation (including documenting the exported classes and fixing a few other nits) and added a note about the change to Misc/NEWS. | ||||
* | Revise the __all__ index entry a touch. | Fred Drake | 2002-12-07 | 1 | -1/+1 |
| | |||||
* | Add __all__ to Reference Manual index. | Raymond Hettinger | 2002-12-07 | 1 | -0/+1 |
| | | | | Closes SF 643227. | ||||
* | Typo: propogate -> propagate | Thomas Heller | 2002-12-06 | 2 | -3/+3 |
| | | | | Bugfix candidate. | ||||
* | Remove extra ")" in example. | Fred Drake | 2002-12-06 | 1 | -1/+1 |
| | |||||
* | Typo: "dead lock" --> "deadlock" | Fred Drake | 2002-12-06 | 2 | -2/+2 |
| | |||||
* | Document that the second argument to PyObject_IsInstance | Walter Dörwald | 2002-12-06 | 1 | -3/+7 |
| | | | | | | | may be a tuple. This closes SF patch http://www.python.org/sf/649095 Backport to release22-maint will follow. | ||||
* | Fix problem in example code. It's minor in this particular example, | Fred Drake | 2002-12-03 | 1 | -1/+1 |
| | | | | but can lead to mysterious problems in real applications. | ||||
* | Fix example regular expressions that simulate scanf() constructs. | Fred Drake | 2002-12-03 | 2 | -3/+4 |
| | |||||
* | Patch #646824: Remove extra \end. | Martin v. Löwis | 2002-12-03 | 1 | -1/+0 |
| | |||||
* | Bug #647387: corrections to the logging section by Vinay Sanjip | Andrew M. Kuchling | 2002-12-03 | 1 | -6/+8 |
| | |||||
* | _ssl.pyd available for Windows. | Mark Hammond | 2002-12-03 | 1 | -0/+3 |
| | |||||
* | Fix SF # 646578, Documentation Typo | Neal Norwitz | 2002-12-02 | 1 | -1/+1 |
| | |||||
* | Remove unused variable | Neal Norwitz | 2002-12-02 | 1 | -1/+1 |
| | |||||
* | Add ossaudiodev; fix typo | Andrew M. Kuchling | 2002-12-01 | 1 | -1/+7 |
| | |||||
* | Slightly improved version of patch #642578: "Expose PyImport_FrozenModules | Just van Rossum | 2002-11-29 | 1 | -0/+15 |
| | | | | | in imp". This adds two functions to the imp module: get_frozenmodules() and set_frozenmodules(). | ||||
* | Fix value of 'propagate' (noted by Chris Reedy) | Andrew M. Kuchling | 2002-11-29 | 1 | -8/+10 |
| | | | | Rewrite paragraph | ||||
* | Fix typo. | Walter Dörwald | 2002-11-29 | 1 | -1/+1 |
| | |||||
* | Mention dict.fromkeys() | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+29 |
| | | | | Various edits | ||||
* | Update e-mail address | Andrew M. Kuchling | 2002-11-27 | 3 | -3/+3 |
| | |||||
* | Bug #643631: MacOS 9 details missing from inst.tex | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+7 |
| | | | | Fill in the missing details. (From Jack Jansen) | ||||
* | SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class | Raymond Hettinger | 2002-11-27 | 1 | -1/+8 |
| | | | | method for constructing new dictionaries from sequences of keys. | ||||
* | Clarify the interpretation of the __getstate__() return value for | Fred Drake | 2002-11-27 | 1 | -3/+9 |
| | | | | | new-style classes. Closes SF bug #637941. | ||||
* | Add missing dependency information for the "What's New" document. | Fred Drake | 2002-11-26 | 1 | -2/+2 |
| | |||||
* | Noted the support for resource exclusion for regrtest. Some people | Fred Drake | 2002-11-26 | 1 | -0/+7 |
| | | | | use regrtest, so it might be interesting. | ||||
* | Rename want_objects to wantobjects throughout, for consistency. | Martin v. Löwis | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | * Doc/ref/ref5.tex | Gustavo Niemeyer | 2002-11-26 | 1 | -1/+1 |
| | | | | Fixed minor bug preventing documentation compilation. | ||||
* | This is not part of my patch | Michael W. Hudson | 2002-11-26 | 1 | -0/+7 |
| | | | | | | | | [ 635933 ] make some type attrs writable but should have been! News about the above. | ||||
* | Report Tkinter changes. | Martin v. Löwis | 2002-11-26 | 1 | -0/+24 |
| | |||||
* | * libbz2.tex | Gustavo Niemeyer | 2002-11-25 | 1 | -1/+1 |
| | | | | Fixed minor typo, suggested by Drew Perttula <drewp@bigasterisk.com>. | ||||
* | Remove \module{} in link text to avoid HTML generation bug | Andrew M. Kuchling | 2002-11-25 | 1 | -3/+2 |
| | |||||
* | Remove extra word | Andrew M. Kuchling | 2002-11-25 | 1 | -1/+1 |
| | |||||
* | Mention that .pth files can't be used to override standard modules | Andrew M. Kuchling | 2002-11-25 | 1 | -4/+8 |
| | | | | (suggested by Jack Jansen) | ||||
* | Add unidata_version. Bump generator version number. | Martin v. Löwis | 2002-11-25 | 1 | -0/+7 |
| | |||||
* | Repaired inaccuracies in the % docs. In particular, we don't (and can't) | Tim Peters | 2002-11-24 | 1 | -3/+14 |
| | | | | | | | guarantee abs(x%y) < abs(y) in all cases when a float is involved. math.fmod() should, though, so noted that too. Bugfix candidate. Someone should check the LaTeX here first, though. | ||||
* | Patch #626485: Support Unicode normalization. | Martin v. Löwis | 2002-11-23 | 1 | -3/+37 |
| | |||||
* | Added change note about returning a dictionary based on keyword | Fred Drake | 2002-11-23 | 1 | -0/+2 |
| | | | | arguments. | ||||
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -14/+21 |
| | | | | | | | dict() constructor. Example: >>> dict(a=1, b=2) {'a': 1, 'b': 2} >>> | ||||
* | Clarify the default setting for daemon_threads. | Fred Drake | 2002-11-22 | 1 | -1/+3 |
| | |||||
* | Fix markup. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
| | |||||
* | Patch #486438: Make module argument to testmod optional. | Martin v. Löwis | 2002-11-22 | 1 | -1/+5 |
| |