diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-07-02 22:03:00 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-07-02 22:03:00 (GMT) |
commit | 8315fd12a5a5dd612fecd12677a01c1b06d5b71d (patch) | |
tree | 51449dbd858e97c0e18265581db2e77e25eadb65 /Misc | |
parent | be5846bfdc90bb4216a179dcc3ced11bf4aaaf8c (diff) | |
download | cpython-8315fd12a5a5dd612fecd12677a01c1b06d5b71d.zip cpython-8315fd12a5a5dd612fecd12677a01c1b06d5b71d.tar.gz cpython-8315fd12a5a5dd612fecd12677a01c1b06d5b71d.tar.bz2 |
Some people have mistaken Python bytecode as being stable and unchanging. In
reality it's simply an implementation detail for CPython. This point is now
clearly documented in both the docs for dis and the glossary.
Closes issue #7829. Thanks to Terry Reedy for some initial suggestions on
wording.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -468,6 +468,9 @@ C-API Library ------- +- Issue #7829: Clearly document that the dis module is exposing an + implementation detail that is not stable between Python VMs or releases. + - Issue #6589: cleanup asyncore.socket_map in case smtpd.SMTPServer constructor raises an exception. |