Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Followup to bug #1069160. | Tim Peters | 2006-08-10 | 4 | -20/+113 |
| | | | | | | PyThreadState_SetAsyncExc(): internal correctness changes wrt refcount safety and deadlock avoidance. Also added a basic test case (relying on ctypes) and repaired the docs. | ||||
* | Update dangling references to the 3.2 database to | Martin v. Löwis | 2006-08-10 | 1 | -5/+5 |
| | | | | mention that this is UCD 4.1 now. | ||||
* | Fix title -- it's rc1, not beta3. | Guido van Rossum | 2006-08-10 | 1 | -2/+2 |
| | |||||
* | News item for SF bug 1112549. | Guido van Rossum | 2006-08-10 | 1 | -3/+5 |
| | |||||
* | Chris McDonough's patch to defend against certain DoS attacks on FieldStorage. | Guido van Rossum | 2006-08-10 | 3 | -5/+86 |
| | | | | SF bug #1112549. | ||||
* | Retrieval of previous shell command was not always preserving indentation | Kurt B. Kaiser | 2006-08-10 | 2 | -9/+18 |
| | | | | since 1.2a1) Patch 1528468 Tal Einat. | ||||
* | test_copytree_simple(): This was leaving behind two new temp | Tim Peters | 2006-08-10 | 1 | -16/+36 |
| | | | | | | | | | | | | | | directories each time it ran, at least on Windows. Several changes: explicitly closed all files; wrapped long lines; stopped suppressing errors when removing a file or directory fails (removing /shouldn't/ fail!); and changed what appeared to be incorrect usage of os.removedirs() (that doesn't remove empty directories at and /under/ the given path, instead it must be given an empty leaf directory and then deletes empty directories moving /up/ the path -- could be that the conceptually simpler shutil.rmtree() was really actually intended here). | ||||
* | Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1) | Kurt B. Kaiser | 2006-08-10 | 2 | -0/+5 |
| | |||||
* | Add missing svn:eol-style property to text files. | Tim Peters | 2006-08-10 | 0 | -0/+0 |
| | |||||
* | Add some commentary on -mimpure-text. | Martin v. Löwis | 2006-08-09 | 1 | -0/+8 |
| | |||||
* | 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 |
| | | | | internal error reporting by moving message to IDLE console. | ||||
* | 1. When used w/o subprocess, all exceptions were preceeded by an error | Kurt B. Kaiser | 2006-08-09 | 3 | -4/+13 |
| | | | | | | | | | message claiming they were IDLE internal errors (since 1.2a1). 2. Add Ronald Oussoren to CREDITS M NEWS.txt M PyShell.py M CREDITS.txt | ||||
* | Concatenation on a long string breaks (SF #1526585). | Armin Rigo | 2006-08-09 | 4 | -5/+78 |
| | |||||
* | It's unlikely that future versions will require _POSIX_C_SOURCE | Ronald Oussoren | 2006-08-09 | 2 | -2/+2 |
| | |||||
* | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 2 | -1/+5 |
| | |||||
* | 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 | 5 | -6/+24 |
| | | | | | value is obtained by invoking hash on the long int. Fixes #1536021. | ||||
* | Introduce an upper bound on tuple nesting depth in | Georg Brandl | 2006-08-09 | 1 | -0/+3 |
| | | | | C argument format strings; fixes rest of #1523610. | ||||
* | Whitespace normalization. | Tim Peters | 2006-08-09 | 1 | -1/+1 |
| | |||||
* | ``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 |
| | |||||
* | 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 | 3 | -1/+6 |
| | | | | must not. | ||||
* | Remove "non-mapping" and "non-sequence" from TypeErrors raised by | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
| | | | | | | | PyMapping_Size and PySequence_Size. Because len() tries first sequence, then mapping size, it will always raise a "non-mapping object has no len" error which is confusing. | ||||
* | webbrowser: Silence stderr output if no gconftool or gnome browser found | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
| | |||||
* | [Patch #1464056] Ensure that we use the panelw library when linking with ↵ | Andrew M. Kuchling | 2006-08-06 | 1 | -2/+6 |
| | | | | | | ncursesw. Once I see how the buildbots react, I'll backport this to 2.4. | ||||
* | test_threading now skips testing alternate thread stack sizes on | Andrew MacIntyre | 2006-08-06 | 2 | -2/+15 |
| | | | | platforms that don't support changing thread stack size. | ||||
* | 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 | 3 | -1/+12 |
| | | | | sys.stdin is closed. | ||||
* | Bug #1535081: A leading underscore has been added to the names of | Georg Brandl | 2006-08-06 | 1 | -5/+8 |
| | | | | the md5 and sha modules, so add it in Modules/Setup.dist too. | ||||
* | Bug #1535182: really test the xreadlines() method of bz2 objects. | Georg Brandl | 2006-08-06 | 2 | -1/+3 |
| | |||||
* | Patch #1534922: correct and enhance unittest docs. | Georg Brandl | 2006-08-05 | 2 | -142/+181 |
| | |||||
* | Fix #1530559, struct.pack raises TypeError where it used to convert. | Bob Ippolito | 2006-08-04 | 3 | -26/+133 |
| | | | | | Passing float arguments to struct.pack when integers are expected now triggers a DeprecationWarning. | ||||
* | Whitespace normalization. | Tim Peters | 2006-08-04 | 1 | -1/+1 |
| | |||||
* | Fix mangled sentence | Andrew M. Kuchling | 2006-08-04 | 1 | -1/+1 |
| | |||||
* | Typo fixes | Andrew M. Kuchling | 2006-08-04 | 2 | -2/+2 |
| | |||||
* | Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd. | Thomas Heller | 2006-08-04 | 2 | -2/+4 |
| | | | | Fix the name of the pdb file as well. | ||||
* | Fix #1530448 - fix ctypes build failure on solaris 10. | Thomas Heller | 2006-08-04 | 2 | -0/+7 |
| | | | | The '-mimpure-text' linker flag is required when linking _ctypes.so. | ||||
* | On Windows, make PyErr_Warn an exported function again. | Thomas Heller | 2006-08-04 | 2 | -1/+4 |
| | |||||
* | Better fix for bug #1531405, not executing str(value) twice. | Georg Brandl | 2006-08-04 | 1 | -7/+3 |
| |