home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import os
- import sys
- import nose.tools as nt
- from IPython.tools import utils
- from IPython.testing import decorators as dec
- _tpl = '\ndef %(name)s(*a,**kw):\n return nt.%(name)s(*a,**kw)\n'
- for a in dir(nt):
- if a.startswith('assert'):
- continue
- _[1][a]
-
-
- def full_path(startPath, files):
- files = utils.list_strings(files)
- base = os.path.split(startPath)[0]
- return [ os.path.join(base, f) for f in files ]
-
-