Skip to content

Commit 094def1

Browse files
committed
-
1 parent caf4572 commit 094def1

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

misc/IDE files/Wing/python_toolbox_py3.wpr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ debug.launch-configs = (1,
1616
'pypath': ('default',
1717
''),
1818
'pyrunargs': ('project',
19-
u''),
20-
'runargs': u'',
21-
'rundir': ('default',
22-
u'')})})
19+
''),
20+
'runargs': u'--processes=3',
21+
'rundir': ('custom',
22+
u'${WING:PROJECT_HOME}')})})
2323
proj.directory-list = [{'dirloc': loc('../../..'),
2424
'excludes': [u'dist',
2525
u'source_py2',
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import abc
2+
import collections
3+
4+
class Ordered(metaclass=abc.ABCMeta):
5+
__slots__ = ()
6+
7+
8+
collections.Sequence.register

0 commit comments

Comments
 (0)