igorpackedexperiment.py doesn't use numpy, so don't import it.
[igor.git] / igor /
2012-07-21 W. Trevor KingAdd closing semicolons (;) to C structures in docstrings.
2012-07-21 W. Trevor KingCarry on plotting in scripts if one of the plots fails...
2012-07-21 W. Trevor KingUse an explicit .array attribute to determine if fields...
2012-07-21 W. Trevor KingAdd -p/--plot option so scripts will plot waves.
2012-07-21 W. Trevor KingAdd igor.packed.walk for traversing a packed experiment...
2012-07-21 W. Trevor KingFixes to string/byte handling for Python 3 compatibility.
2012-07-21 W. Trevor KingConvert exception.message -> exception.args[0] for...
2012-07-21 W. Trevor KingUse integer division when calculating DynamicStringIndi...
2012-07-21 W. Trevor KingConvert buffer(...) -> bytes(...) for Python 3 compatib...
2012-07-21 W. Trevor KingAdd igor.util._ord for Python 3 compatibility.
2012-07-21 W. Trevor KingUse integer division in Field.indexes for Python 3...
2012-07-21 W. Trevor KingPython 3 scraps the iter(...).next() method, so use...
2012-07-21 W. Trevor KingDon't use u'...' syntax in igor.igorpy.
2012-07-21 W. Trevor KingRemove struct._buffer because I don't use it anymore.
2012-07-21 W. Trevor KingRan update-copyright.py.
2012-07-21 W. Trevor KingPull common script code into igor.script and add bin...
2012-07-21 W. Trevor KingUse DebuggingStream for any LOG.level <= DEBUG (not...
2012-07-21 W. Trevor KingAvoid expensive pformating in DynamicStructure.unpack_s...
2012-07-21 W. Trevor KingReplace igor.igorpy parsing with translations from...
2012-07-21 W. Trevor KingAdd 'not enough data...' errors to packed.load().
2012-07-20 W. Trevor KingAdd test-igorpy.py for testing igor.igorpy.
2012-07-20 W. Trevor KingInitial merge with igor.py, still need to integrate...
2012-07-20 W. Trevor KingRework igor.struct to support dynamic structures.
2012-07-20 W. Trevor KingAdd igor.LOG for easier debugging.
2012-07-19 W. Trevor Kingfix record.base
2012-07-19 W. Trevor KingUse variable names to store variables in the filesystem...
2012-07-19 W. Trevor KingStore wave, bin_info, and wave_info separately in WaveR...
2012-07-19 W. Trevor KingRead sIndices as uint32's in binarywave.load.
2012-07-19 W. Trevor KingImplement the folder records and filesystem reconstruction.
2012-07-19 W. Trevor KingImplement the plain-text ProcedureRecord.
2012-07-19 W. Trevor KingImplement the plain-text HistoryRecord, RecreationRecor...
2012-07-19 W. Trevor KingSplit record handling into modules and implement Variab...
2012-07-18 W. Trevor Kingstruct: Add support for zero-count Fields.
2012-07-18 W. Trevor KingExtend igor.struct.Structure and .Field to support...
2012-07-17 W. Trevor KingMove need_to_reorder_bytes from binarywave to util.
2012-07-17 W. Trevor KingWaveRecord now loads waves as WaveRecord.wave.
2012-07-17 W. Trevor KingAPI cleanup for binarywave (loadibw->load, move checksu...
2012-07-17 W. Trevor KingStub out packed experiment (.pxp) reading.
2012-07-17 W. Trevor KingSplit struct and util modules out of binarywave.
2012-07-17 W. Trevor KingPreliminary support for dependent formula waves.
2012-07-17 W. Trevor KingAdd support for text waves.
2012-07-17 W. Trevor KingAdd support for zero-length waves.
2012-07-16 W. Trevor KingRestore native byte order before running need_to_reorde...
2012-07-16 W. Trevor KingPull null-buffer check out into its own function: binar...
2012-07-16 W. Trevor KingUpgrade to Python 2.7+ string formatting.
2012-07-16 W. Trevor KingSplit igorbinarywave.py off of Hooke into its own package.