diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-26 01:58:53 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-26 01:58:53 (GMT) |
commit | 89e3ee0ccff975f30b81b40dec1ee1d7e6b09f9c (patch) | |
tree | 08e3db42b3698bfa3bdb623925c93baf43e58b9b /Misc | |
parent | 93646981011b0795329888bf7d2d10097e899432 (diff) | |
download | cpython-89e3ee0ccff975f30b81b40dec1ee1d7e6b09f9c.zip cpython-89e3ee0ccff975f30b81b40dec1ee1d7e6b09f9c.tar.gz cpython-89e3ee0ccff975f30b81b40dec1ee1d7e6b09f9c.tar.bz2 |
If Py_OptimizeFlag is false then always evaluate assert conditions, don't
test __debug__ at runtime. Closes SF patch #548833.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6,6 +6,10 @@ Type/class unification and new-style classes Core and builtins +- The assert statement no longer tests __debug__ at runtime. This means + that assert statements cannot be disabled by assigning a false value + to __debug__. + - A method zfill() was added to str and unicode, that fills a numeric string to the left with zeros. For example, "+123".zfill(6) -> "+00123". |