- 01 Mar, 2006 9 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
posix__getfullpathname(). In partial answer to the now-deleted XXX comment: /* XXX(twouters) Why use 'et#' here at all? insize isn't used */ `insize` is an input parameter too, and it was left uninitialized, leading to seemingly random failures.
-
Brett Cannon yazdı
expression for the hell of it.
-
Brett Cannon yazdı
added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Thomas Wouters yazdı
-
Thomas Wouters yazdı
non-32bit platforms. Will still only allow 32 bits in a timestamp on Win64, but at least it won't crash, and it'll work right on platforms where longs are big enough to contain time_t's. (A better-working, although conceptually less-right fix would have been to use Py_ssize_t here, but Martin and Tim won't let me.)
-
- 28 Şub, 2006 31 kayıt (commit)
-
-
Thomas Wouters yazdı
VC++.
-
Thomas Wouters yazdı
-
Neal Norwitz yazdı
-
Thomas Wouters yazdı
actually necessary for functionality, but good for transition.
-
Martin v. Löwis yazdı
-
Thomas Wouters yazdı
-
Neal Norwitz yazdı
-
Tim Peters yazdı
-
Guido van Rossum yazdı
- New semantics for __exit__() -- it must re-raise the exception if type is not None; the with-statement itself doesn't do this. (See the updated PEP for motivation.) - Added context managers to: - file - thread.LockType - threading.{Lock,RLock,Condition,Semaphore,BoundedSemaphore} - decimal.Context - Added contextlib.py, which defines @contextmanager, nested(), closing(). - Unit tests all around; bot no docs yet.
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
-
Tim Peters yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Thomas Wouters yazdı
in multiple places. This makes compile()/eval()/etc also inherit the absolute-import codeflag, like division and with-statement already were.
-
Jeremy Hylton yazdı
No good way to extract output yet.
-
Tim Peters yazdı
-
Thomas Wouters yazdı
Neal.
-
Neal Norwitz yazdı
Add directory which contains known ref leaks. Some of these are likely to be system dependent (like test_gestalt).
-
Jeremy Hylton yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Jeremy Hylton yazdı
-
Neal Norwitz yazdı
print the status so far and suppress printing the exception (but still exit).
-
Jeremy Hylton yazdı
Clarify intended use of set_context() and check errors at all call sites.
-
Neal Norwitz yazdı
-
Jeremy Hylton yazdı
Replace the toy arena implementation with a real one, based on allocating 8K chunks of memory by default.
-
Neal Norwitz yazdı
from Tools/compiler/ast.txt are not used anywhere else in asttable.txt. So remove "\&".
-