diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-06-12 15:17:02 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-06-12 15:17:02 (GMT) |
commit | 4b80ef5432abe2cd72cf898e92927bb2273d179b (patch) | |
tree | ae562bddd9e88e191cb7d1b0c068b6e345034ba8 /Misc | |
parent | 3a810e6825a6fddbbfae35073af53299b745dfa7 (diff) | |
download | cpython-4b80ef5432abe2cd72cf898e92927bb2273d179b.zip cpython-4b80ef5432abe2cd72cf898e92927bb2273d179b.tar.gz cpython-4b80ef5432abe2cd72cf898e92927bb2273d179b.tar.bz2 |
Issue #8973: Add __all__ to struct module, so that help(struct) correctly
displays information for the struct.Struct class.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1299,6 +1299,9 @@ Library Extension Modules ----------------- +- Issue #8973: Add __all__ to struct module; this ensures that + help(struct) includes documentation for the struct.Struct class. + - Issue #3129: Trailing digits in format string are no longer ignored. For example, "1" or "ilib123" are now invalid formats and cause ``struct.error`` to be raised. |