(no title)
throwathrowaway | 9 years ago
What about stuff like literal_eval? Or even just monkeypatching with name.__dict__[param] = value ?
> It does fine grained locking. Mutable data structures like lists and dicts do their own locking. Incidentally, this is one reason why supporting C extensions would be complicated.
Would there be a succinct theoretical description of exactly how that's implemented anywhere? What about things like numpy arrays.
trotterdylan|9 years ago
literal_eval could in principle be supported I think. name.__dict__[param] = value works as you'd expect:
EDIT: fixed formattingehsankia|9 years ago
genericpseudo|9 years ago