- 20 Agu, 2000 12 kayıt (commit)
-
-
Jack Jansen yazdı
Moved to unsupported: it never lived up to its expectancies, and for the Mac all the functionality is available in the IDE.
-
Jack Jansen yazdı
Moved to unsupported: it doesn't work anymore and it has outlived its usefulness so I don't want to fix it.
-
Jack Jansen yazdı
Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk in the source folder).
-
Jack Jansen yazdı
Fixed again to work with the old scripting interface (so we can test the new one actually still works).
-
Jack Jansen yazdı
Updated for the new applescript interface (which actually makes it so ridiculously simple that its main reason for existence is backward compatability).
-
Jack Jansen yazdı
Enums we cannot find are set to None, and enumsubst understands this (no substitution done). This is need for what I think are bugs in the Finder aete resources (some events use unknown enums).
-
Jack Jansen yazdı
Do two passes over the suites so we can figure out dependencies for enums and such. The manual method was getting too cumbersome for Finder suites.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Thomas Wouters yazdı
trying hard enough to find out what the arguments to an import were. There is no test-case for this bug, yet, but this is what it looked like: from encodings import cp1006, cp1026 ImportError: cannot import name cp1026 '__import__' was called with only the first name in the 'arguments' list.
-
Tim Peters yazdı
os.name == "nt". This makes test_popen2 pass under Win98SE. HOWEVER, the Win98 "more" invents a leading newline out of thin air, and I'm not sure that the other Windows flavors of "more" also do that. So, somebody please try under other Windows flavors!
-
Tim Peters yazdı
https://sourceforge.net/patch/?func=detailpatch&patch_id=101110&group_id=5470 Accepted as-is, except for purging an "import *".
-
- 19 Agu, 2000 8 kayıt (commit)
-
-
Thomas Wouters yazdı
load mod.submod as m, or mod as m ? Both can be achieved differently, and unambiguously. Also attempt to document this restriction (editor appreciated!) Note that this is an artificial check during compile, because incorporating this in the grammar is hard, and then adjusting the compiler to do the right thing with the right nodes is harder.
-
Fred Drake yazdı
-
Fred Drake yazdı
Adjust markup for hyperlinking to the relevant RFCs. Give it a little organization. Minor nits.
-
Moshe Zadka yazdı
functionality.
-
Andrew M. Kuchling yazdı
Fix comment typo
-
Andrew M. Kuchling yazdı
-
Moshe Zadka yazdı
-
Andrew M. Kuchling yazdı
http://www.timo-tasi.org/python/Cookie.py) This is revision 2.26 according to Tim's RCS history.
-
- 18 Agu, 2000 20 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Barry Warsaw yazdı
`str' is no longer necessary. Gotta turn on -Wall!
-
Vladimir Marangozov yazdı
thus preserving the first one that has been raised.
-
Fred Drake yazdı
-
Fred Drake yazdı
re-raise it instead of re-raising it "manually" the ugly way.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Sjoerd Mullender yazdı
-
Barry Warsaw yazdı
PyUnicode_EncodeUTF8() already returns the created object with the proper reference count. This fixes an Insure reported memory leak.
-
Barry Warsaw yazdı
have access to Purify anymore.
-
Barry Warsaw yazdı
been closed. Don't try to reclose it. Found by Insure.
-
Barry Warsaw yazdı
PyList_Append() always incref's the inserted item. Be sure to decref it regardless of whether the append succeeds or fails.
-
Barry Warsaw yazdı
Py_FatalError() should reflect that.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
fields token and expected must also be initialized, otherwise the tests in parsetok() can generate uninitialized memory read errors. This quiets an Insure warning.
-
Barry Warsaw yazdı
scope. Previously, s_buffer[] was defined inside the PyUnicode_Check() scope, but referred to in the outer scope via assignment to s. This quiets an Insure portability warning.
-
Barry Warsaw yazdı
types (i.e. Py_uintptr_t, our spelling of C9X's uintptr_t). ANSI specifies that pointer compares other than == and != to non-related structures are undefined. This quiets an Insure portability warning.
-
Barry Warsaw yazdı
scope. Previously, s_buffer[] was defined inside the PyUnicode_Check() scope, but referred to in the outer scope via assignment to s. This quiets an Insure portability warning.
-