@@ -429,7 +429,6 @@ def _is_metadata_of(group, parent_group):
429
429
430
430
431
431
class HDFStore :
432
-
433
432
"""
434
433
Dict-like IO interface for storing pandas objects in PyTables.
435
434
@@ -1546,7 +1545,6 @@ def _read_group(self, group, **kwargs):
1546
1545
1547
1546
1548
1547
class TableIterator :
1549
-
1550
1548
""" define the iteration interface on a table
1551
1549
1552
1550
Parameters
@@ -1654,7 +1652,6 @@ def get_result(self, coordinates=False):
1654
1652
1655
1653
1656
1654
class IndexCol :
1657
-
1658
1655
""" an index column description class
1659
1656
1660
1657
Parameters
@@ -1968,7 +1965,6 @@ def write_metadata(self, handler):
1968
1965
1969
1966
1970
1967
class GenericIndexCol (IndexCol ):
1971
-
1972
1968
""" an index which is not represented in the data of the table """
1973
1969
1974
1970
@property
@@ -2006,7 +2002,6 @@ def set_attr(self):
2006
2002
2007
2003
2008
2004
class DataCol (IndexCol ):
2009
-
2010
2005
""" a data holding column, by definition this is not indexable
2011
2006
2012
2007
Parameters
@@ -2456,7 +2451,6 @@ def set_attr(self):
2456
2451
2457
2452
2458
2453
class DataIndexableCol (DataCol ):
2459
-
2460
2454
""" represent a data column that can be indexed """
2461
2455
2462
2456
is_data_indexable = True
@@ -2479,15 +2473,13 @@ def get_atom_timedelta64(self, block):
2479
2473
2480
2474
2481
2475
class GenericDataIndexableCol (DataIndexableCol ):
2482
-
2483
2476
""" represent a generic pytables data column """
2484
2477
2485
2478
def get_attr (self ):
2486
2479
pass
2487
2480
2488
2481
2489
2482
class Fixed :
2490
-
2491
2483
""" represent an object in my store
2492
2484
facilitate read/write of various types of objects
2493
2485
this is an abstract base class
@@ -2655,7 +2647,6 @@ def delete(self, where=None, start=None, stop=None, **kwargs):
2655
2647
2656
2648
2657
2649
class GenericFixed (Fixed ):
2658
-
2659
2650
""" a generified fixed version """
2660
2651
2661
2652
_index_type_map = {DatetimeIndex : "datetime" , PeriodIndex : "period" }
@@ -3252,7 +3243,6 @@ class FrameFixed(BlockManagerFixed):
3252
3243
3253
3244
3254
3245
class Table (Fixed ):
3255
-
3256
3246
""" represent a table:
3257
3247
facilitate read/write of various types of tables
3258
3248
@@ -4127,7 +4117,6 @@ def read_column(self, column, where=None, start=None, stop=None):
4127
4117
4128
4118
4129
4119
class WORMTable (Table ):
4130
-
4131
4120
""" a write-once read-many table: this format DOES NOT ALLOW appending to a
4132
4121
table. writing is a one-time operation the data are stored in a format
4133
4122
that allows for searching the data on disk
@@ -4149,7 +4138,6 @@ def write(self, **kwargs):
4149
4138
4150
4139
4151
4140
class LegacyTable (Table ):
4152
-
4153
4141
""" an appendable table: allow append/query/delete operations to a
4154
4142
(possibly) already existing appendable table this table ALLOWS
4155
4143
append (but doesn't require them), and stores the data in a format
@@ -4603,7 +4591,6 @@ def write(self, **kwargs):
4603
4591
4604
4592
4605
4593
class AppendableMultiFrameTable (AppendableFrameTable ):
4606
-
4607
4594
""" a frame with a multi-index """
4608
4595
4609
4596
table_type = "appendable_multiframe"
@@ -4962,7 +4949,6 @@ def _need_convert(kind):
4962
4949
4963
4950
4964
4951
class Selection :
4965
-
4966
4952
"""
4967
4953
Carries out a selection operation on a tables.Table object.
4968
4954
0 commit comments