[Python-Dev] Replacing self.dict in init (original) (raw)
Tin Tvrtković tinchester at gmail.com
Sun Mar 25 11:08:49 EDT 2018
- Previous message (by thread): [Python-Dev] Replacing self.__dict__ in __init__
- Next message (by thread): [Python-Dev] Replacing self.__dict__ in __init__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
That's reassuring, thanks.
On Sat, Mar 24, 2018 at 5:20 PM Raymond Hettinger < raymond.hettinger at gmail.com> wrote:
This should work. I've seen it done in other production tools without any ill effect.
The dict can be replaced during init() and still get benefits of key-sharing. That benefit is lost only when the instance dict keys are modified downstream from init(). So, from a dict size point of view, your optimization is fine. Still, you should look at whether this would affect static type checkers, lint tools, and other tooling.
Raymond -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20180325/6fd924f5/attachment-0001.html>
- Previous message (by thread): [Python-Dev] Replacing self.__dict__ in __init__
- Next message (by thread): [Python-Dev] Replacing self.__dict__ in __init__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]