Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 1. Remove the Readme entry on the Help Menu, now in About dialog. | Kurt B. Kaiser | 2003-06-12 | 2 | -9/+1 |
| | | | | | | 2. Change title on About dialog. Modified Files: Bindings.py EditorWindow.py | ||||
* | The multiple exception catch should be in a tuple. | Raymond Hettinger | 2003-06-12 | 1 | -1/+1 |
| | |||||
* | Direct readers to CVS logs. | Kurt B. Kaiser | 2003-06-12 | 1 | -0/+4 |
| | |||||
* | It /is/ a package... | Kurt B. Kaiser | 2003-06-12 | 1 | -1/+1 |
| | |||||
* | Updated for IDLEfork re-integration | Kurt B. Kaiser | 2003-06-12 | 2 | -48/+66 |
| | |||||
* | Will use the Python LICENSE file instead. | Kurt B. Kaiser | 2003-06-12 | 1 | -51/+0 |
| | |||||
* | Remove setup file, no longer needed. | Kurt B. Kaiser | 2003-06-12 | 1 | -118/+0 |
| | |||||
* | Remove unneeded MANIFEST template. | Kurt B. Kaiser | 2003-06-12 | 1 | -11/+0 |
| | |||||
* | Remove unneeded installation instructions. | Kurt B. Kaiser | 2003-06-12 | 1 | -92/+0 |
| | |||||
* | Update version. | Kurt B. Kaiser | 2003-06-12 | 1 | -1/+1 |
| | |||||
* | SF Patch #744104: Remove eval() from csv | Raymond Hettinger | 2003-06-12 | 1 | -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 Montanaro | 2003-06-12 | 1 | -0/+23 |
| | |||||
* | Have pydoc try handling an object as "other" if the object does not act the way | Brett Cannon | 2003-06-11 | 1 | -3/+10 |
| | | | | | | it expects based on what inspect classifies it as. Closes bug #729103 . | ||||
* | Fixed a comment. | Brett Cannon | 2003-06-11 | 1 | -1/+1 |
| | |||||
* | fix the curses module build failure on FreeBSD, reported in SF #740234. | Andrew MacIntyre | 2003-06-11 | 1 | -0/+15 |
| | |||||
* | * Added missing documentation for object(). | Raymond Hettinger | 2003-06-11 | 1 | -2/+15 |
| | | | | * Noted the Py2.3 in the optional arg for bool(). | ||||
* | SF bug #660022: parameters for int(), str(), etc. | Raymond Hettinger | 2003-06-11 | 1 | -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 Hettinger | 2003-06-11 | 1 | -2/+17 |
| | |||||
* | Clarify docstring for symlink. | Brett Cannon | 2003-06-11 | 1 | -1/+1 |
| | |||||
* | SF bug: 751941 Invisible HTML tag | Raymond Hettinger | 2003-06-10 | 1 | -0/+2 |
| | | | | Added missing jump target labels. | ||||
* | get_payload(): Improve the TypeError message when the payload isn't of | Barry Warsaw | 2003-06-10 | 1 | -1/+1 |
| | | | | the expected type. In response to SF #751451. | ||||
* | guess_all_extensions(): Return the empty list instead of None when | Barry Warsaw | 2003-06-09 | 3 | -37/+40 |
| | | | | | there are no matching types. Updated the docs and docstrings. Added some unit tests. | ||||
* | Document context_diff() and unified_diff() | Raymond Hettinger | 2003-06-09 | 1 | -0/+63 |
| | |||||
* | Warn about creating global variables by __setattr__ that shadow builtin | Neil Schemenauer | 2003-06-09 | 2 | -1/+72 |
| | | | | | names. Unfortunately, this is not bulletproof since the module dictionary can be modified directly. | ||||
* | Add the IDLEFORK team. | Raymond Hettinger | 2003-06-09 | 1 | -0/+2 |
| | |||||
* | SF bug #685773: 2 (more) bugs in turtle | Raymond Hettinger | 2003-06-09 | 1 | -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 increased | Andrew MacIntyre | 2003-06-09 | 1 | -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 MacIntyre | 2003-06-09 | 1 | -0/+3 |
| | |||||
* | reorganise modules, so that most standard extensions are built into | Andrew MacIntyre | 2003-06-09 | 1 | -1/+1 |
| | | | | | the Python DLL. this slightly improves performance; reduces fragmentation of address spaces and slightly reduces memory footprint. | ||||
* | various updates | Andrew MacIntyre | 2003-06-09 | 1 | -14/+10 |
| | |||||
* | bump stack size to cater for _sre recursion. | Andrew MacIntyre | 2003-06-09 | 1 | -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 McNamara | 2003-06-09 | 1 | -0/+8 |
| | |||||
* | SF 748975 Printing unsaved shell fails | Kurt B. Kaiser | 2003-06-09 | 1 | -2/+6 |
| | | | | M IOBinding.py | ||||
* | Added a command line interface for difflib.py | Raymond Hettinger | 2003-06-08 | 1 | -0/+3 |
| | |||||
* | Added a command line interface for difflib.py | Raymond Hettinger | 2003-06-08 | 2 | -0/+42 |
| | |||||
* | Announce difflib.context_diff() and difflib.unified_diff(). | Raymond Hettinger | 2003-06-08 | 1 | -0/+2 |
| | |||||
* | For the context and unified diff functions: | Raymond Hettinger | 2003-06-08 | 1 | -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 documentation | Neal Norwitz | 2003-06-08 | 1 | -0/+96 |
| | |||||
* | Fix SF #749831, copy raises SystemError when getstate raises exception | Neal Norwitz | 2003-06-08 | 2 | -0/+8 |
| | |||||
* | Added functions for creating context diffs and unified diffs. | Raymond Hettinger | 2003-06-08 | 1 | -1/+200 |
| | | | | Documentation update and NEWS item are forthcoming. | ||||
* | The fix to use . was incorporated | Neal Norwitz | 2003-06-08 | 1 | -2/+1 |
| | |||||
* | Revert 1.25, as overloaded __repr__ is not considered. | Martin v. Löwis | 2003-06-07 | 1 | -8/+8 |
| | |||||
* | Patch #750542: Use issubclass instead of type identity. | Martin v. Löwis | 2003-06-07 | 1 | -8/+8 |
| | |||||
* | Patch #750595: Refer to type complex using builtin. Fixes #595837. | Martin v. Löwis | 2003-06-07 | 1 | -3/+9 |
| | | | | Backported to 2.2. | ||||
* | Patch #746801: FreeBSD 4 expected failures, by Charles Swiger. | Martin v. Löwis | 2003-06-07 | 1 | -0/+30 |
| | |||||
* | Patch #749191: Delete commands in after_cancel. Will backport to 2.2. | Martin v. Löwis | 2003-06-07 | 1 | -0/+6 |
| | |||||
* | Patch #748846: Let Demo/classes/Date.py mention DateTime module. | Martin v. Löwis | 2003-06-07 | 1 | -0/+3 |
| | |||||
* | Patch #748849: Update to current tools and demos. | Martin v. Löwis | 2003-06-07 | 2 | -3/+19 |
| | |||||
* | - urllib2.py now knows how to order proxy classes, so the user doesn't | Gustavo Niemeyer | 2003-06-07 | 3 | -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 one | Kurt B. Kaiser | 2003-06-07 | 2 | -6/+4 |
| | | | | | | | 2. Remove obsolete comment associated with Window menu updating M EditorWindow.py M GrepDialog.py |