Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug #1566663: remove obsolete example from datetime docs. | Georg Brandl | 2006-09-30 | 1 | -16/+18 |
| | |||||
* | Bug #1567375: a minor logical glitch in example description. | Georg Brandl | 2006-09-30 | 1 | -2/+4 |
| | |||||
* | SF bug #1567976 : fix typo | George Yoshida | 2006-09-30 | 1 | -1/+1 |
| | | | | Will backport to 2.5. | ||||
* | Make examples do error checking on Py_InitModule | Andrew M. Kuchling | 2006-09-27 | 1 | -4/+10 |
| | |||||
* | SF Bug #1563963, add missing word and cleanup first sentance | Neal Norwitz | 2006-09-23 | 1 | -2/+2 |
| | |||||
* | add boilerplate "What's New" document so the docs will build | Fred Drake | 2006-09-23 | 2 | -1/+135 |
| | |||||
* | revise explanation of returns_unicode to reflect bool values | Fred Drake | 2006-09-15 | 1 | -3/+4 |
| | | | | | and to include the default value (merged from release25-maint revision 51890) | ||||
* | - fix module name in links in formatted documentation | Fred Drake | 2006-09-15 | 1 | -25/+14 |
| | | | | | - minor markup cleanup (forward-ported from release25-maint revision 51888) | ||||
* | Correct elementtree module index entry. | Georg Brandl | 2006-09-15 | 1 | -1/+1 |
| | |||||
* | Fix grammar errors and improve clarity. | Ka-Ping Yee | 2006-09-15 | 1 | -22/+21 |
| | |||||
* | More wordsmithing | Andrew M. Kuchling | 2006-09-12 | 1 | -26/+28 |
| | |||||
* | Some editing, markup fixes | Andrew M. Kuchling | 2006-09-12 | 1 | -23/+24 |
| | |||||
* | Markup typo fix | Andrew M. Kuchling | 2006-09-12 | 1 | -1/+1 |
| | |||||
* | Fix typo in example | Andrew M. Kuchling | 2006-09-08 | 1 | -1/+1 |
| | |||||
* | Use native SQLite types | Andrew M. Kuchling | 2006-09-08 | 1 | -2/+2 |
| | |||||
* | Use native SQLite types | Andrew M. Kuchling | 2006-09-08 | 1 | -2/+2 |
| | |||||
* | Explain SQLite a bit more clearly | Andrew M. Kuchling | 2006-09-08 | 1 | -6/+8 |
| | |||||
* | Explain SQLite a bit more clearly | Andrew M. Kuchling | 2006-09-08 | 1 | -6/+8 |
| | |||||
* | Add missing word | Andrew M. Kuchling | 2006-09-08 | 1 | -1/+1 |
| | |||||
* | Add a warning notice on top of the generated grammar.txt. | Armin Rigo | 2006-09-07 | 1 | -0/+6 |
| | |||||
* | Rearrange example a bit, and show rpartition() when separator is not found | Andrew M. Kuchling | 2006-09-05 | 1 | -2/+4 |
| | |||||
* | Bug #1552618: change docs of dict.has_key() to reflect recommendation | Georg Brandl | 2006-09-05 | 1 | -5/+5 |
| | | | | to use "in". | ||||
* | Fix endcase for str.rpartition() | Raymond Hettinger | 2006-09-04 | 1 | -2/+2 |
| | |||||
* | Typo fix for decimal docs | Nick Coghlan | 2006-09-03 | 1 | -1/+1 |
| | |||||
* | Fix final documentation nits before backporting decimal module fixes to 2.5 | Nick Coghlan | 2006-09-03 | 2 | -6/+7 |
| | |||||
* | Fix documentation nits for decimal context managers. | Raymond Hettinger | 2006-09-02 | 2 | -16/+11 |
| | |||||
* | Further corrections to the decimal module context management documentation | Nick Coghlan | 2006-09-02 | 1 | -14/+11 |
| | |||||
* | SF #1547931, fix typo (missing and). Will backport to 2.5 | Neal Norwitz | 2006-09-02 | 1 | -1/+1 |
| | |||||
* | evalfile() should be execfile(). | Georg Brandl | 2006-09-01 | 1 | -1/+1 |
| | |||||
* | - SF patch #1550263: Enhance and correct unittest docs | Fred Drake | 2006-09-01 | 1 | -32/+70 |
| | | | | - various minor cleanups for improved consistency | ||||
* | Fix the wrongheaded implementation of context management in the decimal ↵ | Nick Coghlan | 2006-08-31 | 1 | -10/+18 |
| | | | | module and add unit tests. (python-dev discussion is ongoing regarding what we do about Python 2.5) | ||||
* | Doc fix: hashlib objects don't always return a digest of 16 bytes. | Armin Rigo | 2006-08-31 | 1 | -2/+2 |
| | | | | Backport candidate for 2.5. | ||||
* | Move functional howto into trunk | Andrew M. Kuchling | 2006-08-22 | 1 | -0/+1279 |
| | |||||
* | patch for documentation for recent uuid changes (from ping) | Anthony Baxter | 2006-08-22 | 1 | -15/+15 |
| | |||||
* | Minor edits | Andrew M. Kuchling | 2006-08-18 | 2 | -3/+3 |
| | |||||
* | Typo in tp_clear docs. | Georg Brandl | 2006-08-18 | 1 | -1/+1 |
| | |||||
* | Bug #1541682: Fix example in the "Refcount details" API docs. | Georg Brandl | 2006-08-18 | 3 | -22/+20 |
| | | | | | Additionally, remove a faulty example showing PySequence_SetItem applied to a newly created list object and add notes that this isn't a good idea. | ||||
* | More post-release wibble | Neal Norwitz | 2006-08-18 | 1 | -1/+1 |
| | |||||
* | Tutorial: | Thomas Heller | 2006-08-16 | 1 | -29/+48 |
| | | | | | | | | | | | | | Clarify somewhat how parameters are passed to functions (especially explain what integer means). Correct the table - Python integers and longs can both be used. Further clarification to the table comparing ctypes types, Python types, and C types. Reference: Replace integer by C ``int`` where it makes sense. | ||||
* | Update bug/patch counts | Andrew M. Kuchling | 2006-08-16 | 1 | -1/+1 |
| | |||||
* | Link to docs; remove an XXX comment | Andrew M. Kuchling | 2006-08-16 | 1 | -3/+1 |
| | |||||
* | Bump document version to 1.0; remove pystone paragraph | Andrew M. Kuchling | 2006-08-16 | 1 | -4/+1 |
| | |||||
* | Add UnicodeWarning | Andrew M. Kuchling | 2006-08-16 | 1 | -0/+34 |
| | |||||
* | preparing for 2.5c1 | Anthony Baxter | 2006-08-16 | 1 | -1/+1 |
| | |||||
* | Improve markup in PyUnicode_RichCompare. | Georg Brandl | 2006-08-14 | 1 | -19/+14 |
| | |||||
* | Slightly revised version of patch #1538956: | Marc-André Lemburg | 2006-08-14 | 4 | -4/+38 |
| | | | | | | | | | | Replace UnicodeDecodeErrors raised during == and != compares of Unicode and other objects with a new UnicodeWarning. All other comparisons continue to raise exceptions. Exceptions other than UnicodeDecodeErrors are also left untouched. | ||||
* | SF bug #1539336, distutils example code missing | Neal Norwitz | 2006-08-13 | 1 | -0/+2 |
| | |||||
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -3/+22 |
| | | | | | | | I modified this patch some by fixing style, some error checking, and adding XXX comments. This patch requires review and some changes are to be expected. I'm checking in now to get the greatest possible review and establish a baseline for moving forward. I don't want this to hold up release if possible. | ||||
* | Followup to bug #1069160. | Tim Peters | 2006-08-10 | 1 | -6/+6 |
| | | | | | | PyThreadState_SetAsyncExc(): internal correctness changes wrt refcount safety and deadlock avoidance. Also added a basic test case (relying on ctypes) and repaired the docs. | ||||
* | Reindent code | Andrew M. Kuchling | 2006-08-09 | 1 | -31/+33 |
| |