| Commit message (Expand) | Author | Age | Files | Lines |
* | logging's atexit hook now runs even if the rest of the module has | Georg Brandl | 2006-08-11 | 1 | -2/+2 |
|
|
* | Fix the failures on cygwin (2006-08-10 fixed the actual locking issue). | Neal Norwitz | 2006-08-11 | 1 | -5/+8 |
|
|
* | force_test_exit(): This has been completely ineffective | Tim Peters | 2006-08-11 | 1 | -1/+5 |
|
|
* | test_PyThreadState_SetAsyncExc(): This is failing on some | Tim Peters | 2006-08-11 | 1 | -3/+4 |
|
|
* | Whitespace normalization broke test_cgi, because a line | Tim Peters | 2006-08-10 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-10 | 1 | -1/+1 |
|
|
* | Followup to bug #1069160. | Tim Peters | 2006-08-10 | 1 | -0/+69 |
|
|
* | Chris McDonough's patch to defend against certain DoS attacks on FieldStorage. | Guido van Rossum | 2006-08-10 | 3 | -5/+86 |
|
|
* | Retrieval of previous shell command was not always preserving indentation | Kurt B. Kaiser | 2006-08-10 | 2 | -9/+18 |
|
|
* | test_copytree_simple(): This was leaving behind two new temp | Tim Peters | 2006-08-10 | 1 | -16/+36 |
|
|
* | Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1) | Kurt B. Kaiser | 2006-08-10 | 2 | -0/+5 |
|
|
* | ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1). | Kurt B. Kaiser | 2006-08-09 | 2 | -5/+7 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-08-09 | 1 | -1/+1 |
|
|
* | As a slight enhancement to the previous checkin, improve the | Kurt B. Kaiser | 2006-08-09 | 1 | -2/+5 |
|
|
* | 1. When used w/o subprocess, all exceptions were preceeded by an error | Kurt B. Kaiser | 2006-08-09 | 3 | -4/+13 |
|
|
* | Concatenation on a long string breaks (SF #1526585). | Armin Rigo | 2006-08-09 | 3 | -2/+69 |
|
|
* | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 1 | -0/+4 |
|
|
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 1 | -0/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-09 | 1 | -1/+1 |
|
|
* | Remove accidently committed, duplicated test. | Thomas Heller | 2006-08-08 | 1 | -2/+0 |
|
|
* | memcmp() can return values other than -1, 0, and +1 but tp_compare | Thomas Heller | 2006-08-08 | 1 | -0/+3 |
|
|
* | webbrowser: Silence stderr output if no gconftool or gnome browser found | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
|
|
* | test_threading now skips testing alternate thread stack sizes on | Andrew MacIntyre | 2006-08-06 | 1 | -2/+12 |
|
|
* | Don't produce output in test_builtin. | Georg Brandl | 2006-08-06 | 1 | -2/+2 |
|
|
* | Bug #1535165: fixed a segfault in input() and raw_input() when | Georg Brandl | 2006-08-06 | 1 | -0/+8 |
|
|
* | Bug #1535182: really test the xreadlines() method of bz2 objects. | Georg Brandl | 2006-08-06 | 1 | -1/+1 |
|
|
* | Fix #1530559, struct.pack raises TypeError where it used to convert. | Bob Ippolito | 2006-08-04 | 1 | -26/+69 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-04 | 1 | -1/+1 |
|
|
* | Better fix for bug #1531405, not executing str(value) twice. | Georg Brandl | 2006-08-04 | 1 | -7/+3 |
|
|
* | Change fix for segfaulting property(), add a NEWS entry and a test. | Georg Brandl | 2006-08-04 | 1 | -0/+10 |
|
|
* | Fix the 'compiler' package to generate correct code for MAKE_CLOSURE. | Neil Schemenauer | 2006-08-04 | 2 | -26/+26 |
|
|
* | Bug #1333982: string/number constants were inappropriately stored | Neal Norwitz | 2006-08-04 | 1 | -0/+17 |
|
|
* | Bug #1191458: tracing over for loops now produces a line event | Neal Norwitz | 2006-08-04 | 1 | -2/+2 |
|
|
* | Bug #1531405, format_exception no longer raises an exception if | Neal Norwitz | 2006-08-04 | 2 | -5/+19 |
|
|
* | Correction of patch #1455898: In the mbcs decoder, set final=False | Martin v. Löwis | 2006-08-02 | 1 | -19/+11 |
|
|
* | pre-release machinations | Anthony Baxter | 2006-08-02 | 2 | -3/+3 |
|
|
* | Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during | Neal Norwitz | 2006-08-02 | 1 | -0/+32 |
|
|
* | Let us know when there was a problem and the child had to kill the parent | Neal Norwitz | 2006-08-02 | 1 | -0/+1 |
|
|
* | _Stream.close(): Try to kill struct.pack() warnings when | Tim Peters | 2006-08-02 | 1 | -1/+7 |
|
|
* | Try to squash struct.pack warnings on the "amd64 gentoo trunk" | Tim Peters | 2006-08-02 | 1 | -1/+7 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-02 | 1 | -1/+1 |
|
|
* | os.urandom no longer masks unrelated exceptions like SystemExit or | Georg Brandl | 2006-08-01 | 1 | -1/+1 |
|
|
* | [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. | Andrew M. Kuchling | 2006-08-01 | 1 | -2/+28 |
|
|
* | ZipFile.close(): Kill the other struct.pack deprecation | Tim Peters | 2006-07-31 | 1 | -1/+1 |
|
|
* | ZipFile.close(): Killed one of the struct.pack deprecation | Tim Peters | 2006-07-31 | 1 | -1/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-07-31 | 1 | -3/+3 |
|
|
* | Try to prevent hangs on Tru64/Alpha buildbot. I'm not certain this will help | Neal Norwitz | 2006-07-30 | 1 | -1/+37 |
|
|
* | Verify that the signal handlers were really called | Neal Norwitz | 2006-07-30 | 1 | -0/+12 |
|
|
* | Typo fix | George Yoshida | 2006-07-30 | 1 | -1/+1 |
|
|
* | Mention Cygwin in distutils error message about a missing VS 2003. | Martin v. Löwis | 2006-07-30 | 1 | -2/+4 |
|
|