Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Add missing 'self' parameters | Andrew M. Kuchling | 2006-08-09 | 1 | -3/+6 |
| | |||||
* | [Patch #1534027] Add notes on locale module changes | Andrew M. Kuchling | 2006-08-09 | 1 | -5/+34 |
| | |||||
* | [Bug #1536021] Mention __hash__ change | Andrew M. Kuchling | 2006-08-09 | 1 | -2/+10 |
| | |||||
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 1 | -0/+5 |
| | | | | | value is obtained by invoking hash on the long int. Fixes #1536021. | ||||
* | ``str`` is now the same object as ``types.StringType``. | Georg Brandl | 2006-08-08 | 1 | -17/+24 |
| | |||||
* | Bug #1536660: separate two words. | Georg Brandl | 2006-08-08 | 1 | -1/+1 |
| | |||||
* | Bug #1536828: typo: TypeType should have been StringType. | Georg Brandl | 2006-08-08 | 1 | -1/+1 |
| | |||||
* | Bump version number | Andrew M. Kuchling | 2006-08-08 | 1 | -1/+1 |
| | |||||
* | 'Other changes' section now has only one item; move the item elsewhere and ↵ | Andrew M. Kuchling | 2006-08-08 | 1 | -22/+13 |
| | | | | remove the section | ||||
* | Move obmalloc item into C API section | Andrew M. Kuchling | 2006-08-08 | 1 | -29/+29 |
| | |||||
* | Reword paragraph to clarify | Andrew M. Kuchling | 2006-08-08 | 1 | -4/+5 |
| | |||||
* | Patch #1534922: correct and enhance unittest docs. | Georg Brandl | 2006-08-05 | 1 | -142/+174 |
| | |||||
* | Fix mangled sentence | Andrew M. Kuchling | 2006-08-04 | 1 | -1/+1 |
| | |||||
* | fix typos | Gregory P. Smith | 2006-08-04 | 1 | -4/+4 |
| | |||||
* | Fix a mistake. | Thomas Heller | 2006-08-02 | 1 | -3/+3 |
| | |||||
* | A few nore words about what ctypes does. | Thomas Heller | 2006-08-02 | 1 | -7/+28 |
| | | | | | Document that using the wrong calling convention can also raise 'ValueError: Procedure called with the wrong number of arguments'. | ||||
* | pre-release machinations | Anthony Baxter | 2006-08-02 | 1 | -1/+1 |
| | |||||
* | [Bug #848556] Remove \d* from second alternative to avoid exponential case ↵ | Andrew M. Kuchling | 2006-07-31 | 1 | -1/+1 |
| | | | | when repeating match | ||||
* | [Bug #1514540] Instead of putting the standard types in a section, put them ↵ | Andrew M. Kuchling | 2006-07-31 | 2 | -30/+30 |
| | | | | in a chapter of their own. This means string methods will now show up in the ToC. (Should the types come before or after the functions+exceptions+constants chapter? I've put them after, for now.) | ||||
* | Fix function name. | Georg Brandl | 2006-07-31 | 1 | -1/+1 |
| | |||||
* | Remove reference to notation | Andrew M. Kuchling | 2006-07-31 | 1 | -2/+2 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2006-07-31 | 1 | -1/+1 |
| | |||||
* | Mention csv newline changes | Andrew M. Kuchling | 2006-07-31 | 1 | -0/+16 |
| | |||||
* | Add PyErr_WarnEx() | Andrew M. Kuchling | 2006-07-31 | 1 | -0/+7 |
| | |||||
* | Document PyErr_WarnEx. (Bad Neal! No biscuit!) | Andrew M. Kuchling | 2006-07-31 | 1 | -2/+16 |
| | | | | | | | | | Is the explanation of the 'stacklevel' parameter clear? Please feel free to edit it. I don't have LaTeX installed on this machine, so haven't verified that the markup is correct. Will check tonight, or maybe the automatic doc build will tell me. | ||||
* | Add refcounts for PyErr_WarnEx | Andrew M. Kuchling | 2006-07-31 | 1 | -0/+5 |
| | |||||
* | minor tweaks | Skip Montanaro | 2006-07-31 | 1 | -1/+1 |
| | |||||
* | minor tweaks | Skip Montanaro | 2006-07-31 | 1 | -4/+4 |
| | |||||
* | Redo the comment about the 2.5 change in quoted-newline handling. | Andrew McNamara | 2006-07-31 | 1 | -7/+9 |
| | |||||
* | Bug #1531349: right <-> left glitch in __rop__ description. | Georg Brandl | 2006-07-30 | 1 | -1/+1 |
| | |||||
* | Rename struct.pack_to to struct.pack_into as changed in revision 46642. | George Yoshida | 2006-07-30 | 1 | -1/+1 |
| | |||||
* | Bug #1002398: The documentation for os.path.sameopenfile now correctly | Georg Brandl | 2006-07-30 | 1 | -3/+2 |
| | | | | refers to file descriptors, not file objects. | ||||
* | Clarify that __op__ methods must return NotImplemented if they don't support ↵ | Georg Brandl | 2006-07-30 | 1 | -0/+3 |
| | | | | the operation. | ||||
* | - remove yet another reference to how commonly Tkinter is (thought to be) used | Fred Drake | 2006-07-30 | 1 | -4/+2 |
| | | | | - fix an internal section reference |