Skip to content

Commit 8db73f8

Browse files
committed
-
1 parent 097fc5d commit 8db73f8

38 files changed

+20
-233
lines changed

misc/IDE files/Wing/python_toolbox_py3.wpr

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ debug.launch-configs = (1,
2121
'rundir': ('default',
2222
u'')})})
2323
proj.directory-list = [{'dirloc': loc('../../..'),
24-
'excludes': [u'dist',
24+
'excludes': [u'nosetests.xml',
2525
u'source_py2',
2626
u'.coverage_html_report',
2727
u'build',
2828
u'source_py3/.coverage_html_report',
29-
u'nosetests.xml',
29+
u'source_py3/python_toolbox.egg-info',
30+
u'dist',
3031
u'docs/_build',
3132
u'python_toolbox.egg-info'],
3233
'filter': '*',

source_py2/python_toolbox/context_management/base_classes/decorating_context_manager.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `DecoratingContextManager` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104

115
from python_toolbox import decorator_tools
126

source_py2/python_toolbox/context_management/delegating_context_manager.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `DelegatingContextManager` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
import abc
115

126
from python_toolbox import misc_tools

source_py2/python_toolbox/context_management/reentrant_context_manager.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `ReentrantContextManager` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
import abc
115

126
from python_toolbox import caching

source_py2/python_toolbox/copy_mode.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `CopyMode` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104

115
class CopyMode(dict):
126
'''

source_py2/python_toolbox/freezing/freezer_property_freezer.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `FreezerPropertyFreezer` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
from .freezer import Freezer
115

126

source_py2/python_toolbox/misc_tools/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''This module defines miscellaneous tools.'''
5-
64
from .misc_tools import *
75
from . import name_mangling
86
from .proxy_property import ProxyProperty

source_py2/python_toolbox/wx_tools/cursors/cursor_changer.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `CursorChanger` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
import wx
115

126
from python_toolbox.temp_value_setting import TempValueSetter

source_py2/python_toolbox/wx_tools/drawing_tools/pens.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
import wx
115

126
from python_toolbox import caching

source_py2/python_toolbox/wx_tools/keyboard/key.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# Copyright 2009-2015 Ram Rachum.
22
# This program is distributed under the MIT license.
33

4-
'''
5-
This module defines the `Key` class.
6-
7-
See its documentation for more information.
8-
'''
9-
104
import wx
115

126

0 commit comments

Comments
 (0)