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.
Created on 2005年01月10日 21:28 by winjer, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg60629 - (view) | Author: Doug Winter (winjer) | Date: 2005年01月10日 21:28 | |
I've got a class:
class odict(dict):
def __init__(self, d={}):
self._keys = d.keys()
dict.__init__(self, d)
def __setitem__(self, key, item):
dict.__setitem__(self, key, item)
if key not in self._keys:
self._keys.append(key)
...
When I copy.deepcopy one of these it blows up in
__setitem__ with an AttributeError on _keys, because
__setitem__ is called without __init__ ever having been
called. Presumably this thing looks and smells like a
dictionary, so deepcopy thinks it is one.
|
|||
| msg60630 - (view) | Author: Björn Lindqvist (sonderblade) | Date: 2005年01月15日 02:58 | |
Logged In: YES user_id=51702 See patch 1100562 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:09 | admin | set | github: 41420 |
| 2008年01月20日 19:30:38 | christian.heimes | set | status: open -> closed resolution: duplicate superseder: deepcopying listlike and dictlike objects |
| 2005年01月10日 21:28:19 | winjer | create | |