diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-19 16:34:13 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-19 16:34:13 (GMT) |
commit | 7fc570a51e6d8647d73e152721b2e72add72d134 (patch) | |
tree | e735131f83155d73d136ef2d3d8e3c7ed1d653b3 /Doc/whatsnew | |
parent | 7c5ba513b924692e534e372a135add15e70ac0cb (diff) | |
download | cpython-7fc570a51e6d8647d73e152721b2e72add72d134.zip cpython-7fc570a51e6d8647d73e152721b2e72add72d134.tar.gz cpython-7fc570a51e6d8647d73e152721b2e72add72d134.tar.bz2 |
Close #14588: added a PEP 3115 compliant dynamic type creation mechanism
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index fe1a84a..08823e0 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1239,6 +1239,10 @@ Add a new :class:`types.MappingProxyType` class: Read-only proxy of a mapping. (:issue:`14386`) +The new functions `types.new_class` and `types.prepare_class` provide support +for PEP 3115 compliant dynamic type creation. (:issue:`14588`) + + urllib ------ |