##// END OF EJS Templates
Update irunner - needs work on pexpect to work in Python 3.
Thomas Kluyver -
Show More
@@ -189,7 +189,7 b' class InteractiveRunner(object):'
189
189
190 # if the source is a string, chop it up in lines so we can iterate
190 # if the source is a string, chop it up in lines so we can iterate
191 # over it just as if it were an open file.
191 # over it just as if it were an open file.
192 if not isinstance(source,file):
192 if isinstance(source, basestring):
193 source = source.splitlines(True)
193 source = source.splitlines(True)
194
194
195 if self.echo:
195 if self.echo:
@@ -1,7 +1,11 b''
1 import os.path
1 import os.path
2 from setuptools import setup
2 from setuptools import setup
3
3
4 from setupbase import (setup_args, find_scripts, find_packages, find_package_data)
4 from setupbase import (setup_args,
5 find_scripts,
6 find_packages,
7 find_package_data,
8 )
5
9
6 setup_args['entry_points'] = find_scripts(True, suffix='3')
10 setup_args['entry_points'] = find_scripts(True, suffix='3')
7 setup_args['packages'] = find_packages()
11 setup_args['packages'] = find_packages()
General Comments 0
You need to be logged in to leave comments. Login now