annotate python/example/subclass.py @ 694:ebca6d85213a
File "/usr/lib/python3/dist-packages/IPython/config/__init__.py", line 16, in <module>
from .application import *
File "/usr/lib/python3/dist-packages/IPython/config/application.py", line 31, in <module>
from IPython.config.configurable import SingletonConfigurable
File "/usr/lib/python3/dist-packages/IPython/config/configurable.py", line 33, in <module>
from IPython.utils.text import indent, wrap_paragraphs
File "/usr/lib/python3/dist-packages/IPython/utils/text.py", line 28, in <module>
from IPython.external.path import path
File "/usr/lib/python3/dist-packages/IPython/external/path/__init__.py", line 2, in <module>
from path import *
File "/home/jhammel/python/path.py", line 25
print root(path)
^
author |
Jeff Hammel <k0scist@gmail.com> |
date |
Wed, 09 Jul 2014 16:26:49 -0700 |
parents |
ae7e75a8cdb0 |
children |
|
rev |
line source |
598
|
1 import string
|
|
2 from pprint import pprint
|
|
3
|
|
4 class Foo:
|
|
5 pass
|
|
6
|
|
7 class Bar(Foo):
|
|
8 pass
|
|
9
|
|
10 fleem = 1
|
|
11
|
|
12 mystuff = {i:j for i, j in globals().items()}
|
|
13 types = {i:type(j) for i, j in globals().items()}
|
|
14
|
|
15 mynewstuff = {i:j for i, j in mystuff.items()
|
|
16 if (type(j) == type(Foo)) and issubclass(j, Foo)}
|
|
17
|
|
18 pprint(mynewstuff)
|