Created
February 15, 2017 11:50
-
-
Save wojtek-fliposports/b150113bb37cd4bd3499d9eb5a7060bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Fruit(object): | |
name = None | |
def __init__(self, name): | |
self.name = name | |
class FancyFruit(Fruit): | |
@classmethod | |
def fromString(cls, name): | |
return Fruit(name) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment