Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add thread-local feature | Andrew M. Kuchling | 2004-07-15 | 1 | -1/+18 |
| | |||||
* | Correct a paragraph: basicConfig() isn't actually new | Andrew M. Kuchling | 2004-07-15 | 1 | -6/+6 |
| | |||||
* | SF bug 990749: os constants missing | Tim Peters | 2004-07-15 | 1 | -7/+10 |
| | | | | | | | A LaTeX comment identified the 6 os.O_XXX constants the docs claimed are available on Windows but aren't. The bug report listed the same 6. Split these non-Windows constants into a different table with a possibly correct "Availability:" claim. | ||||
* | s/it's/its/, s/NULL/NULL{}/, where appropriate. | Tim Peters | 2004-07-15 | 1 | -4/+4 |
| | |||||
* | Formalize that the Py_VISIT macro requires that the tp_traverse | Tim Peters | 2004-07-15 | 2 | -38/+44 |
| | | | | implementation it's used in must give its arguments specific names. | ||||
* | Bump version; update date | Andrew M. Kuchling | 2004-07-14 | 1 | -3/+3 |
| | |||||
* | Improve examples for working with the context API. | Raymond Hettinger | 2004-07-14 | 1 | -6/+6 |
| | |||||
* | Implemented thread-local data as proposed on python-dev: | Jim Fulton | 2004-07-14 | 1 | -0/+19 |
| | | | | http://mail.python.org/pipermail/python-dev/2004-June/045785.html | ||||
* | Documented the new Py_VISIT macro to simplify implementation of | Jim Fulton | 2004-07-14 | 1 | -0/+23 |
| | | | | tp_traverse handlers. (Tim made me do it. ;) | ||||
* | Implemented a new Py_CLEAR macro. This macro should be used when | Jim Fulton | 2004-07-14 | 1 | -0/+16 |
| | | | | | decrementing the refcount of variables that might be accessed as a result of calling Python | ||||
* | Updated documentation to: | Jim Fulton | 2004-07-14 | 4 | -45/+201 |
| | | | | | | | | | - point out the importance of reassigning data members before assigning thier values - correct my missconception about return values from visitprocs. Sigh. - mention the labor saving Py_VISIT and Py_CLEAR macros. | ||||
* | - Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects | Guido van Rossum | 2004-07-14 | 1 | -1/+1 |
| | | | | | | | | the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???] | ||||
* | clarify where \versionadded and \versionchanged should be placed when | Fred Drake | 2004-07-13 | 1 | -20/+28 |
| | | | | they are used | ||||
* | Claifications: visit procs are supplied by the core, users aren't | Tim Peters | 2004-07-13 | 1 | -3/+6 |
| | | | | | | | expected to write their own. A NULL "object" must not be passed to the visit callback. A non-zero return from a visit proc isn't necessarily an error return (and it doesn't matter to the tp_traverse code *what* it might signify, their only job is to return it). | ||||
* | generalize a bit; no need to mention my user id directly | Fred Drake | 2004-07-13 | 1 | -1/+1 |
| | |||||
* | Wordsmithing | Andrew M. Kuchling | 2004-07-13 | 1 | -15/+15 |
| | |||||
* | Add another point in the "Restrictions" section about how the handling of FTP | Brett Cannon | 2004-07-13 | 1 | -0/+17 |
| | | | | | | | URLs will seemingly succeed to read a URL that points to a file whose permissions you do not have to read. Backport candidate once everyone agrees with the wording. | ||||
* | Fixed minor bugs in the example configuration file | Vinay Sajip | 2004-07-12 | 1 | -4/+4 |
| | |||||
* | Small elaboration and typo fixes. | Raymond Hettinger | 2004-07-12 | 1 | -5/+19 |
| | |||||
* | Fix markup. | Raymond Hettinger | 2004-07-12 | 1 | -9/+10 |
| | |||||
* | another note for amk | Anthony Baxter | 2004-07-12 | 1 | -0/+2 |
| | |||||
* | Bug #788520: Queue class has logic error when non-blocking | Tim Peters | 2004-07-12 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | I don't agree it had a bug (see the report), so this is *not* a candidate for backporting, but the docs were confusing and the Queue implementation was old enough to vote. Rewrote put/put_nowait/get/get_nowait from scratch, to use a pair of Conditions (not_full and not_empty), sharing a common mutex. The code is 1/4 the size now, and 6.25x easier to understand. For blocking with timeout, we also get to reuse (indirectly) the tedious timeout code from threading.Condition. The Full and Empty exceptions raised by non-blocking calls are now easy (instead of nearly impossible) to explain truthfully: Full is raised if and only if the Queue truly is full when the non-blocking put call checks the queue size, and similarly for Empty versus non-blocking get. What I don't know is whether the new implementation is slower (or faster) than the old one. I don't really care. Anyone who cares a lot is encouraged to check that. | ||||
* | SF patch 986010: add missing doc for datetime C API, from | Tim Peters | 2004-07-11 | 1 | -15/+85 |
| | | | | | | | | | | Anthony Tuininga. This is a derived patch, taking the opportunity to add some organization to the now-large pile of datetime-related macros, and to factor out tedious repeated text. Also improved some clumsy wording in NEWS. | ||||
* | Add FAQ on non-GNU make error. Update copyright date to 2004. | Kurt B. Kaiser | 2004-07-11 | 1 | -1/+8 |
| | |||||
* | Added documentation for the "smtpd" module. | Fred Drake | 2004-07-11 | 3 | -0/+65 |
| | | | | Closes SF bug #450803. | ||||
* | Style nit. | Raymond Hettinger | 2004-07-11 | 1 | -2/+2 |
| | |||||
* | Fix decimal write-up nits. | Raymond Hettinger | 2004-07-11 | 1 | -7/+7 |
| | |||||
* | Minor improvements, fixups and wording changes everywhere. | Raymond Hettinger | 2004-07-11 | 1 | -163/+169 |
| | |||||
* | Clarify requirement for GNU make | Kurt B. Kaiser | 2004-07-11 | 1 | -0/+2 |
| | |||||
* | Patch 851752 (fixes bug 820583) | Kurt B. Kaiser | 2004-07-11 | 1 | -3/+10 |
| | | | | | | | | | | | | Patch by John J Lee Reviewed by Jeff Epler / KBK Doc built OK. urlopen() may return None if no handler handles the request. Also clarify what install_opener does. M liburllib2.tex | ||||
* | Fix minor error in example. | Brett Cannon | 2004-07-10 | 1 | -1/+1 |
| | |||||
* | Add PyArg_VaParseTupleAndKeywords(). Document this function and | Brett Cannon | 2004-07-10 | 1 | -1/+14 |
| | | | | | | PyArg_VaParse(). Closes patch #550732. Thanks Greg Chapman. | ||||
* | Clarify docs for inspect.getargspec() that the fourth value is None when there | Brett Cannon | 2004-07-10 | 1 | -3/+3 |
| | | | | are no default arguments for the function. | ||||
* | [Patch #969900] Various corrections and updates to cookielib docs | Andrew M. Kuchling | 2004-07-10 | 1 | -35/+41 |
| | |||||
* | [Patch #972310] Apply correction to docs | Andrew M. Kuchling | 2004-07-10 | 1 | -10/+3 |
| | |||||
* | Fix typo. | Raymond Hettinger | 2004-07-10 | 1 | -1/+1 |
| | |||||
* | [Bug 949832] Fix example; edit sentence | Andrew M. Kuchling | 2004-07-10 | 1 | -3/+3 |
| | |||||
* | Improve Context construction and representation: | Raymond Hettinger | 2004-07-10 | 1 | -15/+15 |
| | | | | | | | | | | | | | * Rename "trap_enablers" to just "traps". * Simplify names of "settraps" and "setflags" to just "traps" and "flags". * Show "capitals" in the context representation * Simplify the Context constructor to match its repr form so that only the set flags and traps need to be listed. * Representation can now be run through eval(). Improve the error message when the Decimal constructor is given a float. The test suite no longer needs a duplicate reset_flags method. | ||||
* | Remove a few elderly sentences | Andrew M. Kuchling | 2004-07-10 | 1 | -9/+2 |
| | |||||
* | Replace example with simpler alternative using PyGILState_{Ensure,Require). ↵ | Andrew M. Kuchling | 2004-07-10 | 1 | -13/+5 |
| | | | | Can someone please confirm this change is OK? | ||||
* | [Bug #987835] Add documentation from PEP 311. (Untested TeX code.) | Andrew M. Kuchling | 2004-07-10 | 1 | -0/+36 |
| | |||||
* | SF bug #987486: fix typo. | Raymond Hettinger | 2004-07-10 | 1 | -1/+1 |
| | |||||
* | SF bug 988387: markup nits. | Raymond Hettinger | 2004-07-10 | 1 | -4/+4 |
| | |||||
* | reminder for amk | Anthony Baxter | 2004-07-09 | 1 | -0/+2 |
| | |||||
* | Module and tests: | Raymond Hettinger | 2004-07-09 | 1 | -47/+7 |
| | | | | | | | | | | | | * Map conditions to related signals. * Make contexts unhashable. * Eliminate used "default" attribute in exception definitions. * Eliminate the _filterfunc in favor of a straight list. Docs: * Eliminate documented references to conditions that are not signals. * Eliminate parenthetical notes such as "1/0 --> Inf" which are no longer true with the new defaults. | ||||
* | Incorporate Facundo's suggestions. | Raymond Hettinger | 2004-07-09 | 1 | -6/+11 |
| | |||||
* | Add a link to the decimal module docs. | Raymond Hettinger | 2004-07-09 | 1 | -8/+8 |
| | |||||
* | show how easy it is to manipulate individual columns - from a request on | Skip Montanaro | 2004-07-08 | 1 | -0/+9 |
| | | | | c.l.py | ||||
* | Fix markup and nits. | Raymond Hettinger | 2004-07-08 | 1 | -9/+9 |
| | |||||
* | Fix markup, typos, and nits. | Raymond Hettinger | 2004-07-08 | 1 | -56/+68 |
| |