LabTools3 1.1.3.21__tar.gz → 1.1.3.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/datafile.py +3 -3
- {labtools3-1.1.3.21 → labtools3-1.1.3.22/LabTools3.egg-info}/PKG-INFO +3 -1
- {labtools3-1.1.3.21/LabTools3.egg-info → labtools3-1.1.3.22}/PKG-INFO +3 -1
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/README.md +3 -1
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/setup.py +1 -1
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LICENSE +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/MCA.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/__init__.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/box.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/get_precision.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/parameterfile.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/pdatafile.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT/plotting.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT_Fit/__init__.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT_Fit/gen_fit.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT_Fit/linear_fit.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LT_Fit/parameters.py +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LabTools3.egg-info/SOURCES.txt +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LabTools3.egg-info/dependency_links.txt +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/LabTools3.egg-info/top_level.txt +0 -0
- {labtools3-1.1.3.21 → labtools3-1.1.3.22}/setup.cfg +0 -0
|
@@ -333,11 +333,11 @@ class dfile:
|
|
|
333
333
|
# now try to convert according to the format
|
|
334
334
|
try:
|
|
335
335
|
if fc == 'f':
|
|
336
|
-
f.append(float(k)) # create a float
|
|
336
|
+
f.append(float(eval(k))) # create a float
|
|
337
337
|
if fc == 'i':
|
|
338
|
-
f.append(int(k)) # create an integer
|
|
338
|
+
f.append(int(eval(k))) # create an integer
|
|
339
339
|
if fc == 's':
|
|
340
|
-
f.append(k) # leave as string
|
|
340
|
+
f.append(eval(k)) # leave as string
|
|
341
341
|
except:
|
|
342
342
|
f.append(k) # if not possible leave it,
|
|
343
343
|
# but make a comment
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: LabTools3
|
|
3
|
-
Version: 1.1.3.
|
|
3
|
+
Version: 1.1.3.22
|
|
4
4
|
Summary: Python 3 Package of modules for typical analysis tasks analyzing physics data
|
|
5
5
|
Home-page: http://wanda.fiu.edu/LabTools3
|
|
6
6
|
Author: Werner Boeglin
|
|
@@ -75,3 +75,5 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
|
|
|
75
75
|
Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
|
|
76
76
|
|
|
77
77
|
Version 1.1.3.21: Fixed bug in histo2d operations
|
|
78
|
+
|
|
79
|
+
Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: LabTools3
|
|
3
|
-
Version: 1.1.3.
|
|
3
|
+
Version: 1.1.3.22
|
|
4
4
|
Summary: Python 3 Package of modules for typical analysis tasks analyzing physics data
|
|
5
5
|
Home-page: http://wanda.fiu.edu/LabTools3
|
|
6
6
|
Author: Werner Boeglin
|
|
@@ -75,3 +75,5 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
|
|
|
75
75
|
Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
|
|
76
76
|
|
|
77
77
|
Version 1.1.3.21: Fixed bug in histo2d operations
|
|
78
|
+
|
|
79
|
+
Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
|
|
@@ -49,4 +49,6 @@ Version 1.1.3.19: Fixed but when using using the fill function in 1d histograms
|
|
|
49
49
|
|
|
50
50
|
Version 1.1.3.20: Added show_header to datafile and the full_precision key word to write_csv.
|
|
51
51
|
|
|
52
|
-
Version 1.1.3.21: Fixed bug in histo2d operations
|
|
52
|
+
Version 1.1.3.21: Fixed bug in histo2d operations
|
|
53
|
+
|
|
54
|
+
Version 1.1.3.22: Updated datafile to be able to read new nunmpy output of numbers with types
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|