- 17 Eyl, 2002 7 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Kurt B. Kaiser yazdı
Rev 1.10 doerwalter (string methods)
-
Kurt B. Kaiser yazdı
Rev 1.6 doerwalter (string methods)
-
Kurt B. Kaiser yazdı
Rev 1.7 loewis Convert characters from the locale's encoding on output. Reject characters outside the locale's encoding on input.
-
Guido van Rossum yazdı
platforms.
-
Guido van Rossum yazdı
the end, in the hope of saving some bytes on 64-bit machines. (Too bad n_nchildren can't be made an unsigned short, but test/test_longexp.py specifically tests for more than 2**16 subtrees at one level.) I don't expect any binary compatibility issues here, unless someone has an old binary of parsermodule.so saved away.
-
- 16 Eyl, 2002 13 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
Rev 1.4 tim_one Convert a pile of obvious "yes/no" functions to return bool
-
Kurt B. Kaiser yazdı
Rev 1.5 doerwalter string methods
-
Kurt B. Kaiser yazdı
Rev 1.5 tim_one Convert a pile of obvious "yes/no" functions to return bool. Rev 1.6 gvanrossum (partially merged previously, move line outside try: block) Provisional fix for writefile() [SF bug # 541730]. The problem was that an exception can occur in the text.get() call or in the write() call, when the text buffer contains non-ASCII characters. This causes the previous contents of the file to be lost. The provisional fix is to call str(self.text.get(...)) *before* opening the file, so that if the exception occurs, we never open the file. Two orthogonal better solutions have to wait for policy decisions: 1. We could try to encode the data as Latin-1 or as UTF-8; but that would require IDLE to grow a notion of file encoding which requires more thought. 2. We could make backups before overwriting a file. This requires more thought because it needs to be fast and cross-platform and configurable. Rev 1.7 gvanrossum (previously merged with modifications by Stephen M. Gava) Add primitive printing support for Unix and Windows. Rev 1.8 loewis Patch #590913: PEP 263 support. Rev 1.9 gvanrossum (tempfile.py interface -- deferred) Rev 1.10 tim_one whitespace normalization Rev 1.11 nnorwitz (deferred pending 1.9 integration)
-
Just van Rossum yazdı
-
Just van Rossum yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Guido van Rossum yazdı
"import" statement, catch and ignore all exceptions. add/fix some comments about this.
-
Kurt B. Kaiser yazdı
Rev 1.4 (string methods) Rev 1.5 Remove unnecessary imports
-
Kurt B. Kaiser yazdı
Rev 1.10 (string methods)
-
Kurt B. Kaiser yazdı
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)
-
Guido van Rossum yazdı
testNtoHL but testNtoH.
-
Kurt B. Kaiser yazdı
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
-
- 15 Eyl, 2002 9 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
Rev 1.13 (string methods)
-
Kurt B. Kaiser yazdı
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
-
Kurt B. Kaiser yazdı
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
-
Kurt B. Kaiser yazdı
-
Kurt B. Kaiser yazdı
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.
-
Kurt B. Kaiser yazdı
Use string.ascii_letters instead of string.letters (SF bug #226706)
-
Guido van Rossum yazdı
be "<fdopen>" rather than "(fdopen)".
-
Neil Schemenauer yazdı
might use __attribute__ in other ways (e.g. CodeWarrior).
-
Guido van Rossum yazdı
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.
-
- 14 Eyl, 2002 11 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
2.2.2 candidate.
-
Kurt B. Kaiser yazdı
completed
-
Kurt B. Kaiser yazdı
Removed Files: AutoIndent.py IdleConf.py MultiScrolledLists.py Separator.py config-unix.txt config-win.txt config.txt eventparse.py keydefs.py
-
Kurt B. Kaiser yazdı
config-keys.def AutoIndent merged 21Jul
-
Kurt B. Kaiser yazdı
configHandler.py AutoIndent merged 21Jul
-
Kurt B. Kaiser yazdı
config-extensions.def AutoIndent merged 21Jul
-
Kurt B. Kaiser yazdı
configDialog.py AutoIndent merged 21Jul
-
Kurt B. Kaiser yazdı
ToolTip.py cleanup 05Aug
-
Kurt B. Kaiser yazdı
ReplaceDialog (missed a change Py Idle 04Apr2002, Booleans, pick up later) track Py Idle: GvR drops 1.5.2 re support 24 Jul
-