Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-RR committed Jun 10, 2015
1 parent 097fc5d commit 8db73f8
Show file tree
Hide file tree
Showing 38 changed files with 20 additions and 233 deletions.
5 changes: 3 additions & 2 deletions misc/IDE files/Wing/python_toolbox_py3.wpr
Expand Up @@ -21,12 +21,13 @@ debug.launch-configs = (1,
'rundir': ('default',
u'')})})
proj.directory-list = [{'dirloc': loc('../../..'),
'excludes': [u'dist',
'excludes': [u'nosetests.xml',
u'source_py2',
u'.coverage_html_report',
u'build',
u'source_py3/.coverage_html_report',
u'nosetests.xml',
u'source_py3/python_toolbox.egg-info',
u'dist',
u'docs/_build',
u'python_toolbox.egg-info'],
'filter': '*',
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `DecoratingContextManager` class.
See its documentation for more information.
'''


from python_toolbox import decorator_tools

Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `DelegatingContextManager` class.
See its documentation for more information.
'''

import abc

from python_toolbox import misc_tools
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `ReentrantContextManager` class.
See its documentation for more information.
'''

import abc

from python_toolbox import caching
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/copy_mode.py
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `CopyMode` class.
See its documentation for more information.
'''


class CopyMode(dict):
'''
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `FreezerPropertyFreezer` class.
See its documentation for more information.
'''

from .freezer import Freezer


Expand Down
2 changes: 0 additions & 2 deletions source_py2/python_toolbox/misc_tools/__init__.py
@@ -1,8 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''This module defines miscellaneous tools.'''

from .misc_tools import *
from . import name_mangling
from .proxy_property import ProxyProperty
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/cursors/cursor_changer.py
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `CursorChanger` class.
See its documentation for more information.
'''

import wx

from python_toolbox.temp_value_setting import TempValueSetter
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/drawing_tools/pens.py
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import wx

from python_toolbox import caching
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/keyboard/key.py
@@ -1,12 +1,6 @@
# Copyright 2009-2015 Ram Rachum.
# This program is distributed under the MIT license.

'''
This module defines the `Key` class.
See its documentation for more information.
'''

import wx


Expand Down
@@ -1,19 +1,12 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_button import CuteButton


class CuteBitmapButton(wx.BitmapButton, CuteButton):
''' '''
def __init__(self, parent, id=-1, bitmap=wx.NullBitmap,
pos=wx.DefaultPosition, size=wx.DefaultSize,
style=wx.BU_AUTODRAW, validator=wx.DefaultValidator,
Expand Down
8 changes: 1 addition & 7 deletions source_py2/python_toolbox/wx_tools/widgets/cute_button.py
@@ -1,16 +1,10 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteButton` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_control import CuteControl


class CuteButton(wx.Button, CuteControl):
''' '''
pass
8 changes: 1 addition & 7 deletions source_py2/python_toolbox/wx_tools/widgets/cute_control.py
@@ -1,16 +1,10 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_window import CuteWindow


class CuteControl(wx.Control, CuteWindow):
''' '''
pass
@@ -1,13 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteDialogType` metaclass.
See its documentation for more information.
'''


import wx

from python_toolbox.wx_tools.cursors import CursorChanger
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/widgets/cute_frame.py
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteFrame` class.
See its documentation for more information.
'''

import wx

from .cute_top_level_window import CuteTopLevelWindow
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteHiddenButton` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_control import CuteControl
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteHtmlWindow` class.
See its documentation for more information.
'''

import webbrowser

import wx.html
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteHyperlinkCtrl` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_control import CuteControl
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/widgets/cute_panel.py
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import wx

from python_toolbox.wx_tools.widgets.cute_window import CuteWindow
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import wx.lib.scrolledpanel

from python_toolbox.wx_tools.widgets.cute_panel import CutePanel
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteTopLevelWindow` class.
See its documentation for more information.
'''

import wx

from .cute_window import CuteWindow
Expand Down
6 changes: 0 additions & 6 deletions source_py2/python_toolbox/wx_tools/widgets/cute_tree_ctrl.py
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteTreeCtrl` class.
See its documentation for more information.
'''

import wx

from python_toolbox.misc_tools import ProxyProperty
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `` class.
See its documentation for more information.
'''

import collections

import wx
Expand Down
@@ -1,11 +1,4 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `BindSavvyEvtHandler` class.
See documentation of the `BindSavvyEvtHandler` class and its metaclass
`BindSavvyEvtHandlerType` for more information.
'''

from .bind_savvy_evt_handler import BindSavvyEvtHandler
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `BindSavvyEvtHandler` class.
See its documentation for more information.
'''

import wx

from python_toolbox import wx_tools
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `BindSavvyEvtHandlerType` metaclass.
See documentation of `BindSavvyEvtHandler` for more information.
'''

import wx

from python_toolbox import caching
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `EventHandlerGrokker` class.
See its documentation for more information.
'''

import types

import wx
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `NameParser` class.
See its documentation for more information.
'''

import abc

from python_toolbox import abc_tools
Expand Down
@@ -1,12 +1,6 @@
# Copyright 2009-2011 Ram Rachum.
# This program is distributed under the LGPL2.1 license.

'''
This module defines the `CuteWindow` class.
See its documentation for more information.
'''

import wx

from python_toolbox import wx_tools
Expand Down

0 comments on commit 8db73f8

Please sign in to comment.