~ubuntu-branches/ubuntu/natty/pytables/natty-proposed

« back to all changes in this revision

Viewing changes to tables/tests/test_tablesMD.py

  • Committer: Bazaar Package Importer
  • Author(s): Francesc Altet
  • Date: 2007-09-19 13:21:33 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070919132133-u9rfrz97tjxi9ccu
Tags: 2.0.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1087
1087
        os.remove(file)
1088
1088
 
1089
1089
class RecordT(IsDescription):
1090
 
    var0 = IntCol(dflt=1, shape=1) # native int
 
1090
    var0 = IntCol(dflt=1, shape=()) # native int
1091
1091
    var1 = IntCol(dflt=[1], shape=(1,)) # 1-D int (one element)
1092
1092
    var2_s = IntCol(dflt=[1,1], shape=2) # 1-D int (two elements)
1093
1093
    var2 = IntCol(dflt=[1,1], shape=(2,)) # 1-D int (two elements)