Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 16 | -165/+785 |
| | | | | | method still needs to support string exceptions, and allow None for the third argument. Documentation updates are needed, too. | ||||
* | * Improve code for the empty frozenset singleton: | Raymond Hettinger | 2005-08-01 | 5 | -65/+89 |
| | | | | | | | | | | | - Handle both frozenset() and frozenset([]). - Do not use singleton for frozenset subclasses. - Finalize the singleton. - Add test cases. * Factor-out set_update_internal() from set_update(). Simplifies the code for several internal callers. * Factor constant expressions out of loop in set_merge_internal(). * Minor comment touch-ups. | ||||
* | Fix build on gcc: PySetIter_Type should be static in definition | Hye-Shik Chang | 2005-08-01 | 1 | -1/+1 |
| | | | | part also. | ||||
* | 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 |
| | | | | | data structure instead of using dictionaries. Reduces memory consumption by 1/3 and provides modest speed-ups for most set operations. | ||||
* | use a test for PDF support that is more portable across teTeX major versions | Fred Drake | 2005-07-29 | 2 | -4/+8 |
| | | | | (closes SF bug #1238210) | ||||
* | 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 ↵ | Vinay Sajip | 2005-07-29 | 1 | -1/+23 |
| | | | | documentation of the keyword arguments. A version change note was also added to the basic example. | ||||
* | Disable encoding/decoding test, if unicode is disabled. | Walter Dörwald | 2005-07-28 | 1 | -19/+20 |
| | |||||
* | Fix a typo. (found by Jong-uk Kim) | Hye-Shik Chang | 2005-07-28 | 1 | -1/+1 |
| | |||||
* | This is barry-scott's patch: | Michael W. Hudson | 2005-07-27 | 2 | -3/+7 |
| | | | | | | | | [ 1231069 ] ioctl has problem with -ive request codes by using the 'I' not the 'i' format code to PyArg_ParseTuple(). Backport candidate? Maybe... | ||||
* | Update permissions for Johannes Gijsbers. | Raymond Hettinger | 2005-07-27 | 1 | -0/+2 |
| | |||||
* | Ouch, move that comment to the right place. | Guido van Rossum | 2005-07-27 | 1 | -4/+4 |
| | |||||
* | Fix a problem in Tkinter introduced by SF patch #869468 (checked in as | Guido van Rossum | 2005-07-26 | 2 | -6/+4 |
| | | | | | 1.179): delete bogus __hasattr__ and __delattr__ methods on class Tk that were breaking Tkdnd. | ||||
* | Upgrade Windows build to zlib 1.2.3 (a security fix) | Trent Mick | 2005-07-26 | 3 | -14/+17 |
| | |||||
* | That was one too much. | Georg Brandl | 2005-07-22 | 1 | -1/+1 |
| | |||||
* | Fix all wrong instances of "it's". | Georg Brandl | 2005-07-22 | 21 | -34/+34 |
| | |||||
* | [ 1243081 ] repair typos | Georg Brandl | 2005-07-22 | 9 | -11/+11 |
| | |||||
* | Make attributes and local variables in the StreamReader str objects instead | Walter Dörwald | 2005-07-20 | 2 | -5/+24 |
| | | | | | of unicode objects, so that codecs that do a str->str decoding won't promote the result to unicode. This fixes SF bug #1241507. | ||||
* | add information about alternate implementations, noting that documentation | Fred Drake | 2005-07-20 | 1 | -1/+51 |
| | | | | | for the implementation should be consulted (thanks to Evelyn Mitchell for suggesting this) | ||||
* | fix markup nits | Fred Drake | 2005-07-20 | 1 | -4/+4 |
| | |||||
* | Fix cleanup DECREF logic in builtin_filter function. | Georg Brandl | 2005-07-19 | 1 | -6/+6 |
| | |||||
* | added news entry for previous checkin | Georg Brandl | 2005-07-18 | 1 | -0/+2 |
| | |||||
* | [ 755617 ] os module: Need a better description of "mode" | Georg Brandl | 2005-07-18 | 1 | -0/+5 |
| | |||||
* | bug [ 850238 ] unclear documentation/missing command? | Georg Brandl | 2005-07-18 | 1 | -3/+3 |
| | |||||
* | bug [ 957505 ] SocketServer module documentation misleading | Georg Brandl | 2005-07-18 | 2 | -7/+5 |
| | |||||
* | SF bug #1238681: freed pointer is used in longobject.c:long_pow(). | Tim Peters | 2005-07-17 | 2 | -5/+10 |
| | | | | | | | | | | In addition, long_pow() skipped a necessary (albeit extremely unlikely to trigger) error check when converting an int modulus to long. Alas, I was unable to write a test case that crashed due to either cause. Bugfix candidate. | ||||
* | Whitespace normalization. | Tim Peters | 2005-07-17 | 6 | -53/+53 |
| | |||||
* | bug [ 1021621 ] use first_name, not first, in code samples | Georg Brandl | 2005-07-17 | 1 | -2/+2 |
| | |||||
* | bug [ 872769 ] os.access() documentation should stress race conditions | Georg Brandl | 2005-07-17 | 1 | -0/+5 |
| | |||||
* | [ 912943 ] 7.5.6 Thread Objects is too vague | Georg Brandl | 2005-07-17 | 1 | -1/+6 |
| | |||||
* | - Bug #1015140: disambiguated the term "article id" in nntplib docs and | Georg Brandl | 2005-07-17 | 3 | -6/+11 |
| | | | | docstrings to either "article number" or "message id". | ||||
* | bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated | Georg Brandl | 2005-07-17 | 1 | -2/+2 |
| | |||||
* | use macro | Skip Montanaro | 2005-07-17 | 1 | -1/+1 |
| | |||||
* | Note that usegmt is new in 2.4. Closes #1239681. | Skip Montanaro | 2005-07-17 | 1 | -1/+2 |
| | |||||
* | Add support for FreeBSD 7. | Hye-Shik Chang | 2005-07-17 | 8 | -3/+550 |
| | |||||
* | Added an option to the scanner to generated marked-up HTML from the input | Jack Jansen | 2005-07-17 | 1 | -6/+161 |
| | | | | | file. This should make it a lot easier (I hope) to get the regular expressions right. | ||||
* | bug [ 1238170 ] threading.Thread uses {} as default argument | Georg Brandl | 2005-07-15 | 2 | -1/+6 |
| | |||||
* | textwrap now processes text chucks at O(n) speed instead of O(n**2). | Raymond Hettinger | 2005-07-15 | 2 | -9/+16 |
| | | | | Patch #1209527 (Contributed by Connelly). | ||||
* | Brett requests that Flovis's permissions be dropped. | Raymond Hettinger | 2005-07-14 | 1 | -0/+2 |
| | |||||
* | RFE [ 1216944 ] Add Error Code Dictionary to urllib2 | Georg Brandl | 2005-07-14 | 4 | -0/+65 |
| | |||||
* | Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file | Walter Dörwald | 2005-07-12 | 1 | -27/+45 |
| | | | | with a PEP 263 encoding declaration results in long decoded line. | ||||
* | Fix for #1236090: FSSpec.as_pathname() crashes. | Jack Jansen | 2005-07-12 | 2 | -2/+93 |
| | | | | | | Turns out patch #1035255 was incomplete, it only patched _Filemodule.c and not filesupport.py. So regenerating caused as_pathname() to go into an infinite loop. | ||||
* | Oops. | Georg Brandl | 2005-07-12 | 1 | -1/+1 |
| | |||||
* | bug [ 1232768 ] Mistakes in online docs under "5.3 Pure Embedding" | Georg Brandl | 2005-07-12 | 1 | -6/+4 |
| | |||||
* | Fix: | Michael W. Hudson | 2005-07-12 | 3 | -8/+36 |
| | | | | | | | [ 1229429 ] missing Py_DECREF in PyObject_CallMethod Add a test in test_enumerate, which is a bit random, but suffices (reversed_new calls PyObject_CallMethod under some circumstances). | ||||
* | bug [ 1235266 ] debug info file descriptor of tarfile is inconsistent | Georg Brandl | 2005-07-12 | 1 | -1/+1 |
| | |||||
* | SF bug 1185883: PyObject_Realloc can't safely take over a block currently | Tim Peters | 2005-07-10 | 2 | -35/+40 |
| | | | | | | | | | | managed by C, because it's possible for the block to be smaller than the new requested size, and at the end of allocated VM. Trying to copy over nbytes bytes to a Python small-object block can segfault then, and there's no portable way to avoid this (we would have to know how many bytes starting at p are addressable, and std C has no means to determine that). Bugfix candidate. Should be backported to 2.4, but I'm out of time. |