summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1. Remove the Readme entry on the Help Menu, now in About dialog.Kurt B. Kaiser2003-06-122-9/+1
| | | | | | 2. Change title on About dialog. Modified Files: Bindings.py EditorWindow.py
* The multiple exception catch should be in a tuple.Raymond Hettinger2003-06-121-1/+1
|
* Direct readers to CVS logs.Kurt B. Kaiser2003-06-121-0/+4
|
* It /is/ a package...Kurt B. Kaiser2003-06-121-1/+1
|
* Updated for IDLEfork re-integrationKurt B. Kaiser2003-06-122-48/+66
|
* Will use the Python LICENSE file instead.Kurt B. Kaiser2003-06-121-51/+0
|
* Remove setup file, no longer needed.Kurt B. Kaiser2003-06-121-118/+0
|
* Remove unneeded MANIFEST template.Kurt B. Kaiser2003-06-121-11/+0
|
* Remove unneeded installation instructions.Kurt B. Kaiser2003-06-121-92/+0
|
* Update version.Kurt B. Kaiser2003-06-121-1/+1
|
* SF Patch #744104: Remove eval() from csvRaymond Hettinger2003-06-121-17/+18
| | | | | | | | | | | Eliminates the eval() step in the csv module resulting in better security, more clarity, and a little speed. The idea is to make successive attempts to coerce the string to a python type: int(s), long(s), float(s), etc. As a by-product, eliminates a bare 'except' statement.
* add a couple test cases which involve longs and floats in 'e' format.Skip Montanaro2003-06-121-0/+23
|
* Have pydoc try handling an object as "other" if the object does not act the wayBrett Cannon2003-06-111-3/+10
| | | | | | it expects based on what inspect classifies it as. Closes bug #729103 .
* Fixed a comment.Brett Cannon2003-06-111-1/+1
|
* fix the curses module build failure on FreeBSD, reported in SF #740234.Andrew MacIntyre2003-06-111-0/+15
|
* * Added missing documentation for object().Raymond Hettinger2003-06-111-2/+15
| | | | * Noted the Py2.3 in the optional arg for bool().
* SF bug #660022: parameters for int(), str(), etc.Raymond Hettinger2003-06-111-19/+28
| | | | | | * Indicate that arguments are optional for most builtin type constructors. * Replace e.g. in staticmethod() and classmethod() docs. * Add \code{} markup to some in-line code examples.
* Add docs for get_grouped_opcodes().Raymond Hettinger2003-06-111-2/+17
|
* Clarify docstring for symlink.Brett Cannon2003-06-111-1/+1
|
* SF bug: 751941 Invisible HTML tagRaymond Hettinger2003-06-101-0/+2
| | | | Added missing jump target labels.
* get_payload(): Improve the TypeError message when the payload isn't ofBarry Warsaw2003-06-101-1/+1
| | | | the expected type. In response to SF #751451.
* guess_all_extensions(): Return the empty list instead of None whenBarry Warsaw2003-06-093-37/+40
| | | | | there are no matching types. Updated the docs and docstrings. Added some unit tests.
* Document context_diff() and unified_diff()Raymond Hettinger2003-06-091-0/+63
|
* Warn about creating global variables by __setattr__ that shadow builtinNeil Schemenauer2003-06-092-1/+72
| | | | | names. Unfortunately, this is not bulletproof since the module dictionary can be modified directly.
* Add the IDLEFORK team.Raymond Hettinger2003-06-091-0/+2
|
* SF bug #685773: 2 (more) bugs in turtleRaymond Hettinger2003-06-091-0/+1
| | | | | | | The docs recommend filling by fill(1), drawing commands, fill(0). However, the filling did not actually take place until the next draw command. Fixed by issuing a null draw command at the end of the fill method.
* Changes to sre.c after the application of patch #726869 have increasedAndrew MacIntyre2003-06-091-5/+11
| | | | | | | | | | | | | | | | | | stack usage on FreeBSD, requiring the recursion limit to be lowered further. Building with gcc 2.95 (the standard compiler on FreeBSD 4.x) is now also affected. The underlying issue is that FreeBSD's pthreads implementation has a hard-coded 1MB stack size for the initial (or "primary") thread, which can not be changed without rebuilding libc_r. Exhausting this stack results in a bus error. Building without pthreads (configure --without-threads), or linking with the port of the Linux pthreads library (aka Linuxthreads) instead of libc_r, avoids this limitation. On OS/2, only gcc 3.2 is affected and the stack size is controllable, so the special handling has been removed.
* add support for os.tmpfile()Andrew MacIntyre2003-06-091-0/+3
|
* reorganise modules, so that most standard extensions are built intoAndrew MacIntyre2003-06-091-1/+1
| | | | | the Python DLL. this slightly improves performance; reduces fragmentation of address spaces and slightly reduces memory footprint.
* various updatesAndrew MacIntyre2003-06-091-14/+10
|
* bump stack size to cater for _sre recursion.Andrew MacIntyre2003-06-091-1/+1
| | | | | | reorganise modules, so that most standard extensions are built into the Python DLL. this slightly improves performance; reduces fragmentation of address spaces and slightly reduces memory footprint.
* Fix potential leaks identified by Neal Norwitz.Andrew McNamara2003-06-091-0/+8
|
* SF 748975 Printing unsaved shell failsKurt B. Kaiser2003-06-091-2/+6
| | | | M IOBinding.py
* Added a command line interface for difflib.pyRaymond Hettinger2003-06-081-0/+3
|
* Added a command line interface for difflib.pyRaymond Hettinger2003-06-082-0/+42
|
* Announce difflib.context_diff() and difflib.unified_diff().Raymond Hettinger2003-06-081-0/+2
|
* For the context and unified diff functions:Raymond Hettinger2003-06-081-15/+9
| | | | | | * Simplified test for visible changes * Improved variable names and line spacing * Replaced dict(a=3) style with Py2.2 compatable {'a':3}
* SF #735051, add time.tzset documentationNeal Norwitz2003-06-081-0/+96
|
* Fix SF #749831, copy raises SystemError when getstate raises exceptionNeal Norwitz2003-06-082-0/+8
|
* Added functions for creating context diffs and unified diffs.Raymond Hettinger2003-06-081-1/+200
| | | | Documentation update and NEWS item are forthcoming.
* The fix to use . was incorporatedNeal Norwitz2003-06-081-2/+1
|
* Revert 1.25, as overloaded __repr__ is not considered.Martin v. Löwis2003-06-071-8/+8
|
* Patch #750542: Use issubclass instead of type identity.Martin v. Löwis2003-06-071-8/+8
|
* Patch #750595: Refer to type complex using builtin. Fixes #595837.Martin v. Löwis2003-06-071-3/+9
| | | | Backported to 2.2.
* Patch #746801: FreeBSD 4 expected failures, by Charles Swiger.Martin v. Löwis2003-06-071-0/+30
|
* Patch #749191: Delete commands in after_cancel. Will backport to 2.2.Martin v. Löwis2003-06-071-0/+6
|
* Patch #748846: Let Demo/classes/Date.py mention DateTime module.Martin v. Löwis2003-06-071-0/+3
|
* Patch #748849: Update to current tools and demos.Martin v. Löwis2003-06-072-3/+19
|
* - urllib2.py now knows how to order proxy classes, so the user doesn'tGustavo Niemeyer2003-06-073-11/+34
| | | | | | have to insert it in front of other classes, nor do dirty tricks like inserting a "dummy" HTTPHandler after a ProxyHandler when building an opener with proxy support.
* 1. Find in Files Dialog shows text selection if there is oneKurt B. Kaiser2003-06-072-6/+4
| | | | | | | 2. Remove obsolete comment associated with Window menu updating M EditorWindow.py M GrepDialog.py