This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka
Date 2015-12-27.14:28:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451226480.87.0.0659065914437.issue25961@psf.upfronthosting.co.za>
In-reply-to
Content
The null character is allowed in __name__ setter (but error message is a little confusing).

>>> class A: pass
... 
>>> A.__name__ = 'B\0'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: __name__ must not contain null bytes

But is allowed in type constructor.

>>> t = type('B\0C', (), {})
>>> t
<class '__main__.BC'>
>>> t.__name__
'B\x00C'
History
Date User Action Args
2015-12-27 14:28:00serhiy.storchakasetrecipients: + serhiy.storchaka
2015-12-27 14:28:00serhiy.storchakasetmessageid: <1451226480.87.0.0659065914437.issue25961@psf.upfronthosting.co.za>
2015-12-27 14:28:00serhiy.storchakalinkissue25961 messages
2015-12-27 14:28:00serhiy.storchakacreate