| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Numerous fix-ups to C API and docs. Added tests for C API. | Raymond Hettinger | 2005-08-16 | 4 | -26/+148 |
|
|
* | DECREF --> XDECREF | Raymond Hettinger | 2005-08-16 | 1 | -1/+1 |
|
|
* | Add a C API for sets and frozensets. | Raymond Hettinger | 2005-08-16 | 5 | -12/+210 |
|
|
* | Port from the Python 2.4 branch, patches for SF bug # 900092, | Barry Warsaw | 2005-08-15 | 3 | -8/+18 |
|
|
* | Correct definition of ST_GEN_IDX. | Martin v. Löwis | 2005-08-14 | 1 | -2/+2 |
|
|
* | More function re-ordering (placing like functions together). | Raymond Hettinger | 2005-08-13 | 1 | -86/+86 |
|
|
* | * Bring lookkey() and lookkey_string() closer to dict version. | Raymond Hettinger | 2005-08-13 | 1 | -93/+77 |
|
|
* | Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternext | Phillip J. Eby | 2005-08-13 | 1 | -1/+1 |
|
|
* | Teach the sets module to correctly compute s-=s and s^=s as the empty set. | Raymond Hettinger | 2005-08-13 | 2 | -0/+17 |
|
|
* | Fix pystack command. | Neil Schemenauer | 2005-08-13 | 1 | -1/+1 |
|
|
* | * Fix SF #1257731. Make __contains__(), remove(), and discard() only do | Raymond Hettinger | 2005-08-12 | 1 | -0/+13 |
|
|
* | * Fix SF #1257731. Make __contains__(), remove(), and discard() only do | Raymond Hettinger | 2005-08-12 | 1 | -26/+30 |
|
|
* | Change the %s format specifier for str objects so that it returns a | Neil Schemenauer | 2005-08-12 | 5 | -17/+42 |
|
|
* | Document 'istext' parameter | Andrew M. Kuchling | 2005-08-12 | 1 | -2/+5 |
|
|
* | * Add short-circuit code for in-place operations with self (such as | Raymond Hettinger | 2005-08-11 | 2 | -89/+165 |
|
|
* | fix minor markup errors | Fred Drake | 2005-08-09 | 1 | -3/+3 |
|
|
* | Patch #1180695: Implement nanosecond stat resolution on FreeBSD, | Martin v. Löwis | 2005-08-09 | 6 | -1/+373 |
|
|
* | Patch #1239112: Correct LINKCC C++ test. Fixes #1189330. | Martin v. Löwis | 2005-08-07 | 3 | -7/+14 |
|
|
* | Patch #827386: Support absolute source paths in msvccompiler.py. | Martin v. Löwis | 2005-08-07 | 2 | -0/+4 |
|
|
* | * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. | Raymond Hettinger | 2005-08-07 | 2 | -19/+56 |
|
|
* | Whitespace normalization (ran reindent.py over the whole tree). | Tim Peters | 2005-08-07 | 1 | -10/+10 |
|
|
* | Removed XXX block about a test_bsddb3 failure that went away a long time ago. | Tim Peters | 2005-08-07 | 1 | -11/+0 |
|
|
* | Update some Python version numbers. | Tim Peters | 2005-08-07 | 1 | -3/+3 |
|
|
* | * Removed checked_error flag which no longer provides any benefit. | Raymond Hettinger | 2005-08-06 | 1 | -15/+12 |
|
|
* | * set_new() doesn't need to zero the structure a second time after tp_alloc | Raymond Hettinger | 2005-08-06 | 2 | -3/+12 |
|
|
* | Factor away a redundant clear() function. | Raymond Hettinger | 2005-08-06 | 1 | -13/+6 |
|
|
* | bug [ 1252706 ] poplib list() docstring fix (and docs too) | Georg Brandl | 2005-08-05 | 2 | -3/+3 |
|
|
* | * Improve a variable name: entry0 --> table. | Raymond Hettinger | 2005-08-05 | 1 | -39/+58 |
|
|
* | * Move copyright notice to top and indicate derivation from sets.py and | Raymond Hettinger | 2005-08-05 | 1 | -22/+17 |
|
|
* | com_yield_expr(): Squash new compiler wng about unreferenced local. | Tim Peters | 2005-08-03 | 1 | -1/+0 |
|
|
* | Disable a few other tests, that can't work if Python is compiled without | Walter Dörwald | 2005-08-03 | 4 | -18/+30 |
|
|
* | patch [ 1105730 ] Faster commonprefix in macpath, ntpath, etc. | Georg Brandl | 2005-08-03 | 5 | -41/+35 |
|
|
* | bug [ 1250306 ] incorrect description of range function | Georg Brandl | 2005-08-03 | 1 | -1/+1 |
|
|
* | Add example | Andrew M. Kuchling | 2005-08-02 | 1 | -2/+14 |
|
|
* | Add note | Andrew M. Kuchling | 2005-08-02 | 1 | -0/+14 |
|
|
* | [ 1243192 ] Incorrect documentation of re.UNICODE | Georg Brandl | 2005-08-02 | 2 | -12/+31 |
|
|
* | Model set.pop() after dict.popitem(). | Raymond Hettinger | 2005-08-02 | 2 | -12/+34 |
|
|
* | Minor tweak as a side effect of fixing #1243553. The Unicode name for " is | Skip Montanaro | 2005-08-02 | 1 | -1/+1 |
|
|
* | Bring cgi.escape docstring slightly more in line with the library ref | Skip Montanaro | 2005-08-02 | 1 | -1/+3 |
|
|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 16 | -165/+785 |
|
|
* | * Improve code for the empty frozenset singleton: | Raymond Hettinger | 2005-08-01 | 5 | -65/+89 |
|
|
* | Fix build on gcc: PySetIter_Type should be static in definition | Hye-Shik Chang | 2005-08-01 | 1 | -1/+1 |
|
|
* | Improve variable names. | Raymond Hettinger | 2005-07-31 | 1 | -154/+154 |
|
|
* | Fix frozenset() ref count and a comment typo. | Raymond Hettinger | 2005-07-31 | 1 | -3/+2 |
|
|
* | Comment on the set_swap_bodies() helper function. | Raymond Hettinger | 2005-07-31 | 1 | -0/+13 |
|
|
* | Revised the set() and frozenset() implementaion to use its own internal | Raymond Hettinger | 2005-07-31 | 3 | -224/+912 |
|
|
* | use a test for PDF support that is more portable across teTeX major versions | Fred Drake | 2005-07-29 | 2 | -4/+8 |
|
|
* | add support for svn: and svn+ssh: URL schemes to urlparse | Fred Drake | 2005-07-29 | 2 | -1/+7 |
|
|
* | Documentation added about changes in 2.4 to basicConfig(), including document... | Vinay Sajip | 2005-07-29 | 1 | -1/+23 |
|
|
* | Disable encoding/decoding test, if unicode is disabled. | Walter Dörwald | 2005-07-28 | 1 | -19/+20 |
|
|