Changeset 9b71c30 in sasmodels
- Timestamp:
- May 25, 2016 4:31:17 PM (8 years ago)
- Children:
- f3cb36b, 399f02e
- Parents:
- 4d8e0bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/kerneldll.py
r7e16db7 r9b71c30 198 198 source = generate.convert_type(source, dtype) 199 199 fd, filename = tempfile.mkstemp(suffix=".c", prefix=tempfile_prefix) 200 with o s.fdopen(fd, "w") as file:200 with open(filename, "w") as file: 201 201 file.write(source) 202 os.close(fd) 202 203 compile(source=filename, output=dll) 203 204 # comment the following to keep the generated c file
Note: See TracChangeset
for help on using the changeset viewer.