Changeset 1166
- Timestamp:
- 12/12/21 12:18:35 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/frams.py
r1164 r1166 291 291 def init(*args): 292 292 """ 293 Initializes the connection to Framsticks dll/so .293 Initializes the connection to Framsticks dll/so/dylib. 294 294 295 295 Python programs do not have to know the Framstics path but if they know, just pass the path as the first argument. … … 303 303 frams_D = None 304 304 lib_path = None 305 lib_name = 'frams-objects.so'if os.name == 'posix' else 'frams-objects.dll'305 lib_name = ('frams-objects.dylib' if sys.platform == 'darwin' else 'frams-objects.so') if os.name == 'posix' else 'frams-objects.dll' 306 306 initargs = [] 307 307 for a in args:
Note: See TracChangeset
for help on using the changeset viewer.