- 24 Apr, 2003 26 commits
-
-
Raymond Hettinger authored
As a side issue on this bug, it was noted that list and tuple iterators used macros to directly access containers and would not recognize __getitem__ overrides. If the method is overridden, the patch returns a generic sequence iterator which calls the __getitem__ method; otherwise, it returns a high custom iterator with direct access to container elements.
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
Closes SF bug #724751.
-
Thomas Heller authored
-
Thomas Heller authored
Theres now a separate function for each of the format codes b, B, H, I, k, i, l, L, K.
-
Tim Peters authored
-
Barry Warsaw authored
-
Raymond Hettinger authored
(requested by GvR. patch contributed by Michael Stone)
-
Raymond Hettinger authored
(contributed by John J Lee)
-
Fred Drake authored
-
Barry Warsaw authored
to the PyBSDDB project at SourceForge.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Marc-André Lemburg authored
definitions.
-
Marc-André Lemburg authored
There's no separate documentation for this module yet - apart from the doc-strings which explain the APIs.
-
Raymond Hettinger authored
Allows use of tuples for the initializer.
-
Raymond Hettinger authored
The additional code complexity and new NOP opcode were not worth it.
-
Brett Cannon authored
-
Brett Cannon authored
Also some typos and removed trailing whitespace on the lines.
-
- 23 Apr, 2003 14 commits
-
-
Fred Drake authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Thomas Heller authored
PyLong_AsUnsignedLongMask(), PyLong_AsUnsignedLongLongMask().
-
Walter Dörwald authored
and "" in grep.getgrgid(). Adjust the test to work around this problem. This should fix SF bug #724771.
-
Tim Peters authored
-
Thomas Heller authored
-
Thomas Heller authored
-
Raymond Hettinger authored
Revised netrc.py to include the additional ascii punctuation characters. Omitted the other logic changes. See Lib/netrc.py 1.17. Since this is more of a feature request than a bug, including in Py2.3 but not recommending for backporting.
-
Raymond Hettinger authored
Expanded the range of allowable characters to include ascii punctuation. Allows resource files to have a larger character set for passwords. (Idea contributed by Bram Moolenaar.)
-
Raymond Hettinger authored
(contributed by logistix; substantially reworked by rhettinger). To create a representation of non-string arrays, array_repr() was starting with a base Python string object and repeatedly using += to concatenate the representation of individual objects. Logistix had the idea to convert to an intermediate tuple form and then join it all at once. I took advantage of existing tools and formed a list with array_tolist() and got its representation through PyObject_Repr(v) which already has a fast implementation for lists.
-
Fred Drake authored
This is used on www.python.org.
-
Alex Martelli authored
-
Neal Norwitz authored
-