summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* make sure the object browser can't crash because when the list data gets ↵Just van Rossum2002-09-161-6/+20
| | | | bigger than 32kB
* add ./ to configure command so it actually works verbatimJust van Rossum2002-09-161-1/+1
|
* Patch #609700: Use $(CC) to link on Linux.Martin v. Löwis2002-09-162-3/+3
|
* Make BadPickleGet a class. Fixes #609164.Martin v. Löwis2002-09-162-3/+6
|
* When recursively attempting to find the modules imported by anGuido van Rossum2002-09-161-2/+10
| | | | | "import" statement, catch and ignore all exceptions. add/fix some comments about this.
* Merge Py Idle changes:Kurt B. Kaiser2002-09-161-3/+0
| | | | | | Rev 1.4 (string methods) Rev 1.5 Remove unnecessary imports
* Merge Py Idle changes:Kurt B. Kaiser2002-09-161-11/+10
| | | | Rev 1.10 (string methods)
* Merge Py Idle changes:Kurt B. Kaiser2002-09-161-13/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | Rev 1.39 GvR Properly fix SF bug #507298 (Gregor Lingl): shellpython2.2 -Qnew smart indent error Use // where int division is intended. (This breaks IDLE for use with previous Python versions -- I don't care.) Rev 1.40 tim_one Convert a pile of obvious "yes/no" functions to return bool. Rev 1.41 foffani/loewis (already merged) - MS html help Rev 1.42 (skip, done differently in Idlefork) Rev 1.43 tzot/rhettinger Extended IDLE's open module menu item to handle hierarchical module names. Will look at doing something similar in import.c so that the effort won't have to be repeated elsewhere. Closes SF patch 600152. Rev 1.44 doerwalter (string methods)
* Since it tests both ntohl and ntohs, the test should not be calledGuido van Rossum2002-09-161-1/+1
| | | | testNtoHL but testNtoH.
* Merge Py Idle changesKurt B. Kaiser2002-09-161-1/+0
| | | | | | | | | Rev 1.16 (skip. The Edward K. Ream breakpoint fix has been added to bdb.py and idlefork Debugger.py no longer overrides Bdb.set_break() ) Rev 1.17 Remove unnecessary imports
* Merge Py Idle changesKurt B. Kaiser2002-09-152-4/+2
| | | | Rev 1.13 (string methods)
* Merge Py Idle changesKurt B. Kaiser2002-09-151-7/+11
| | | | | | | | | | | | | | | | | Rev 1.9 Improve handling of docstrings. I had feared this was a case of introspection incompatibility, but in fact it's just that calltips always gave up on a docstring that started with a newline (but didn't realize they were giving up <wink>). Rev 1.10 (already merged) Rev 1.11 (whitespace normalization, skip this time) Rev 1.12 Remove unnecessary imports
* Merge Py Idle changesKurt B. Kaiser2002-09-151-1/+6
| | | | | | | | | | | | | Rev 1.4 SF bug 546078: IDLE calltips cause application error. Assorted crashes on Windows and Linux when trying to display a very long calltip, most likely a Tk bug. Wormed around by clamping the calltip display to a maximum of 79 characters (why 79? why not ...). Bugfix candidate, for all Python releases. Rev 1.5 Remove unnecessary imports
* Merge Py Idle's Rev 1.16 (string methods)Kurt B. Kaiser2002-09-151-1/+0
|
* Merge Py Idle's changes to AutoIndent.py into EditorWindow.py sinceKurt B. Kaiser2002-09-151-9/+7
| | | | | | | | | | | | | | | | | | | | | | EditorWindow has incorporated AutoIndent Rev 1.17 classifyws(): Fix a "/" to work under -Qnew (as well as without it). Bugfix candidate! Rev 1.18 (Already merged) Rev 1.19 smart_backspace_event(): remove now-pointless int() call. Bugfix candidate: the current state of AutoIdent.py should be in 2.2.1. Rev 1.20 Apply diff2.txt from SF patch http://www.python.org/sf/572113 (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
* Merge Py Idle's Rev 1.5Kurt B. Kaiser2002-09-151-1/+1
| | | | Use string.ascii_letters instead of string.letters (SF bug #226706)
* I think it makes more sense that the pseudo filename used by fdopen()Guido van Rossum2002-09-151-1/+1
| | | | be "<fdopen>" rather than "(fdopen)".
* Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCCNeil Schemenauer2002-09-155-10/+12
| | | | might use __attribute__ in other ways (e.g. CodeWarrior).
* Address SF bug #577530: del __builtins__ breaks out of rexecGuido van Rossum2002-09-151-8/+12
| | | | | | | | | | | | | | | | | | | | | | Using the suggestion there: add_module() forces __builtin__ back; this fixes r_exec, r_eval, r_execfile. The interactive console had to be fixed separately, because it doesn't use r_exec, but relies on the 'locals' dict having the right __builtins__. Fixed this by subclassing InteractiveConsole and overriding runcode(), which does the exec. This changes the banner output slightly: instead of starting with *** RESTRICTED ***, a subtler (RestrictedConsole) is printed before the first >>> prompt. Also import readline (if it exists) when the interactive console is used, for more convenient input editing and history. This does not mean that rexec is now considered safe! But for those willing to take the risk, it's safer than before. (Note that a safety analysis of the code module would be wise if you plan to use the interactive console for real -- I've only ever used it to play with restricted mode.) This should be backported to 2.2 and 2.1.
* Initial revisionKurt B. Kaiser2002-09-141-0/+3
|
* Don't test whether surrogate sequences round-trip in UTF-8. 2.2.2 candidate.Martin v. Löwis2002-09-141-1/+4
|
* Use integer above sys.maxunicode for range test. Fixes #608884.Martin v. Löwis2002-09-141-2/+2
| | | | 2.2.2 candidate.
* Bump to reflect final cleanup of Config system and first pass GRPCKurt B. Kaiser2002-09-141-1/+1
| | | | completed
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-149-1081/+0
| | | | | | | Removed Files: AutoIndent.py IdleConf.py MultiScrolledLists.py Separator.py config-unix.txt config-win.txt config.txt eventparse.py keydefs.py
* MERGE DS_RPC_BRANCH into MAIN:Kurt B. Kaiser2002-09-141-0/+22
| | | | | config-keys.def AutoIndent merged 21Jul
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-1/+13
| | | | | configHandler.py AutoIndent merged 21Jul
* MERGE DS_RPC_BRANCH into MAIN:Kurt B. Kaiser2002-09-141-15/+0
| | | | | config-extensions.def AutoIndent merged 21Jul
* MERGE DS_RPC_BRANCH into MAIN:Kurt B. Kaiser2002-09-141-2/+2
| | | | | configDialog.py AutoIndent merged 21Jul
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-0/+3
| | | | | ToolTip.py cleanup 05Aug
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-18/+2
| | | | | | ReplaceDialog (missed a change Py Idle 04Apr2002, Booleans, pick up later) track Py Idle: GvR drops 1.5.2 re support 24 Jul
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-40/+4
| | | | | | | | PyShell.py don't track Py Idle patch 543222 - disable script bindings in shell since it was done differently in MAIN Remove "binding comments" 05 Aug 1.13.2.2 to 1.13.2.3
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-7/+8
| | | | | ParenMatch.py Remove last dependencies to old config backend 06Aug
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-57/+0
| | | | | | | | | EditorWindow.py don't track Py Idle patch 543222 - disable script bindings in shell since it was done differently in MAIN Remove "binding comments" 05 Aug 1.23.2.3 to 1.23.2.4 Remove last dependencies to old config backend 06Aug to 1.23.2.5
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-0/+480
| | | | | | EditorWindow.py AutoIndent merged 21Jul Comment out debug messages 21Jul
* Fix a couple of minor markup glitches.Fred Drake2002-09-141-2/+2
|
* Maybe this fixes test_socket on 64-bit Linux.Guido van Rossum2002-09-141-9/+13
|
* MERGE DS_RPC_BRANCH into MAINKurt B. Kaiser2002-09-141-1/+4
| | | | | CallTips track Py Idle loewis: Use ascii_letters to avoid UnicodeErrors 06Aug
* Bindings.pyKurt B. Kaiser2002-09-141-8/+10
| | | | | AutoIndent merged 21Jul cleanup and remove references to config backend 06Aug
* Add two itemsAndrew M. Kuchling2002-09-131-0/+11
|
* Add a bunch of sys.stdout.flush() calls that will hopefully improveGuido van Rossum2002-09-131-0/+7
| | | | the usability of the output of the Xenofarm builds.
* SF # 602108 ensure string is null terminated after strncpyNeal Norwitz2002-09-131-0/+1
|
* Fiddle with compact_traceback().Guido van Rossum2002-09-131-7/+6
| | | | More whitespace cleanup.
* Fix part of SF bug # 544248 gcc warning in unicodeobject.cNeal Norwitz2002-09-131-1/+1
| | | | When --enable-unicode=ucs4, need to cast Py_UNICODE to a char
* Shut up FutureWarnings about hex constants.Jack Jansen2002-09-121-0/+4
|
* Patch by Tony Lownds: build an IDLE applet too, if _tkinter is available.Jack Jansen2002-09-121-1/+21
| | | | I modified the patch to make it a non-fatal error if IDLE isn't built.
* Patch by Tony Lownds: add the Resources directory to sys.path.Jack Jansen2002-09-121-0/+6
|
* Merge from DS_RPC_BRANCHKurt B. Kaiser2002-09-121-2/+2
| | | | | Modified Files: INSTALL.txt
* Remove unnecessary importsNeal Norwitz2002-09-121-4/+0
|
* Remove unused local variablesNeal Norwitz2002-09-122-2/+0
|
* Remove unnecessary importsNeal Norwitz2002-09-127-10/+0
|