Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions chaco/data_range_1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,6 @@ class DataRange1D(BaseDataRange):
# The actual numerical value for the high setting.
_high_value = CFloat(inf)

# A list of attributes to persist
# _pickle_attribs = ("_low_setting", "_high_setting")

#------------------------------------------------------------------------
# AbstractRange interface
#------------------------------------------------------------------------
Expand Down
16 changes: 0 additions & 16 deletions chaco/example_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,6 @@
from traits.etsconfig.api import ETSConfig


# Set up the debug logger for all chaco examples.
# We don't want users to go digging around for the default Enthought logfile
# in ~/envisage.log, so we add a handler to the global logger for a file
# "chaco.log" in the current directory.

#import logging, logging.handlers
#try:
# chaco_handler = logging.handlers.RotatingFileHandler("chaco.log",
# maxBytes=1000000, backupCount=0)
# logging.getLogger().addHandler(chaco_handler)
#except:
# # If we can't override the default handler, it's OK.
# pass


# Import a default palette for backwards compatibility
from .default_colors import cbrewer as COLOR_PALETTE

Expand All @@ -37,7 +22,6 @@
# PyQt/traits problem (see below) we can't because it would drag in traits too
# early. Until it is fixed we just assume wx if we can import it.
# Force the selection of a valid toolkit.
#import enable.toolkit
if not ETSConfig.toolkit:
for toolkit, toolkit_module in (('wx', 'wx'), ('qt4', 'pyface.qt')):
try:
Expand Down
2 changes: 0 additions & 2 deletions chaco/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,6 @@ def _orientation_changed(self):


### Persistence ###########################################################
#_pickles = ("orientation", "line_color", "line_style", "line_weight",
# "grid_interval", "mapper")

def __getstate__(self):
state = super(PlotGrid,self).__getstate__()
Expand Down