__new__

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ethan Furman

    __new__

    Greetings, List!

    I was browsing through the Decimal source today, and found this:

    # We're immutable, so use __new__ not __init__
    def __new__. . .
    self = object.__new__( cls)
Working...