summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).Kurt B. Kaiser2006-08-092-5/+7
|
* Typo fixAndrew M. Kuchling2006-08-091-1/+1
|
* As a slight enhancement to the previous checkin, improve theKurt B. Kaiser2006-08-091-2/+5
| | | | internal error reporting by moving message to IDLE console.
* 1. When used w/o subprocess, all exceptions were preceeded by an errorKurt B. Kaiser2006-08-093-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 Rigo2006-08-094-5/+78
|
* It's unlikely that future versions will require _POSIX_C_SOURCERonald Oussoren2006-08-092-2/+2
|
* Fix and test for an infinite C recursion.Armin Rigo2006-08-092-1/+5
|
* Reindent codeAndrew M. Kuchling2006-08-091-31/+33
|
* Add missing 'self' parametersAndrew M. Kuchling2006-08-091-3/+6
|
* [Patch #1534027] Add notes on locale module changesAndrew M. Kuchling2006-08-091-5/+34
|
* [Bug #1536021] Mention __hash__ changeAndrew M. Kuchling2006-08-091-2/+10
|
* __hash__ may now return long int; the final hashMartin v. Löwis2006-08-095-6/+24
| | | | | value is obtained by invoking hash on the long int. Fixes #1536021.
* Introduce an upper bound on tuple nesting depth inGeorg Brandl2006-08-091-0/+3
| | | | C argument format strings; fixes rest of #1523610.
* Whitespace normalization.Tim Peters2006-08-091-1/+1
|
* ``str`` is now the same object as ``types.StringType``.Georg Brandl2006-08-081-17/+24
|
* Bug #1536660: separate two words.Georg Brandl2006-08-081-1/+1
|
* Bug #1536828: typo: TypeType should have been StringType.Georg Brandl2006-08-081-1/+1
|
* Bump version numberAndrew M. Kuchling2006-08-081-1/+1
|
* 'Other changes' section now has only one item; move the item elsewhere and ↵Andrew M. Kuchling2006-08-081-22/+13
| | | | remove the section
* Move obmalloc item into C API sectionAndrew M. Kuchling2006-08-081-29/+29
|
* Reword paragraph to clarifyAndrew M. Kuchling2006-08-081-4/+5
|
* Remove accidently committed, duplicated test.Thomas Heller2006-08-081-2/+0
|
* memcmp() can return values other than -1, 0, and +1 but tp_compareThomas Heller2006-08-083-1/+6
| | | | must not.
* Remove "non-mapping" and "non-sequence" from TypeErrors raised byGeorg Brandl2006-08-081-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 foundGeorg Brandl2006-08-081-2/+2
|
* [Patch #1464056] Ensure that we use the panelw library when linking with ↵Andrew M. Kuchling2006-08-061-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 onAndrew MacIntyre2006-08-062-2/+15
| | | | platforms that don't support changing thread stack size.
* Don't produce output in test_builtin.Georg Brandl2006-08-061-2/+2
|
* Bug #1535165: fixed a segfault in input() and raw_input() whenGeorg Brandl2006-08-063-1/+12
| | | | sys.stdin is closed.
* Bug #1535081: A leading underscore has been added to the names ofGeorg Brandl2006-08-061-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 Brandl2006-08-062-1/+3
|
* Patch #1534922: correct and enhance unittest docs.Georg Brandl2006-08-052-142/+181
|
* Fix #1530559, struct.pack raises TypeError where it used to convert.Bob Ippolito2006-08-043-26/+133
| | | | | Passing float arguments to struct.pack when integers are expected now triggers a DeprecationWarning.
* Whitespace normalization.Tim Peters2006-08-041-1/+1
|
* Fix mangled sentenceAndrew M. Kuchling2006-08-041-1/+1
|
* Typo fixesAndrew M. Kuchling2006-08-042-2/+2
|
* Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd.Thomas Heller2006-08-042-2/+4
| | | | Fix the name of the pdb file as well.
* Fix #1530448 - fix ctypes build failure on solaris 10.Thomas Heller2006-08-042-0/+7
| | | | The '-mimpure-text' linker flag is required when linking _ctypes.so.
* On Windows, make PyErr_Warn an exported function again.Thomas Heller2006-08-042-1/+4
|
* Better fix for bug #1531405, not executing str(value) twice.Georg Brandl2006-08-041-7/+3
|
* Change fix for segfaulting property(), add a NEWS entry and a test.Georg Brandl2006-08-044-10/+33
|
* Fix the 'compiler' package to generate correct code for MAKE_CLOSURE.Neil Schemenauer2006-08-043-26/+29
| | | | | | In the 2.5 development cycle, MAKE_CLOSURE as changed to take free variables as a tuple rather than as individual items on the stack. Closes patch #1534084.
* Fix bug caused by first decrefing, then increfing.Georg Brandl2006-08-041-5/+4
|
* fix typosGregory P. Smith2006-08-041-4/+4
|
* SF patch #1534048 (bug #1531003): fix typo in error messageFred Drake2006-08-041-1/+1
|
* There were really two issuesNeal Norwitz2006-08-041-1/+2
|
* Bug #1333982: string/number constants were inappropriately storedNeal Norwitz2006-08-043-2/+25
| | | | | in the byte code and co_consts even if they were not used, ie immediately popped off the stack.
* Bug #1191458: tracing over for loops now produces a line eventNeal Norwitz2006-08-044-11/+56
| | | | | | | | | | | | on each iteration. I'm not positive this is the best way to handle this. I'm also not sure that there aren't other cases where the lnotab is generated incorrectly. It would be great if people that use pdb or tracing could test heavily. Also: * Remove dead/duplicated code that wasn't used/necessary because we already handled the docstring prior to entering the loop. * add some debugging code into the compiler (#if 0'd out).
* Bug #1531405, format_exception no longer raises an exception ifNeal Norwitz2006-08-043-5/+51
| | | | str(exception) raised an exception.
* Tagging for release of Python 2.5b3Anthony Baxter2006-08-031-0/+1
|