Keep track of attached files¶
- sage.repl.attach.add_attached_file(filename)[source]¶
- Add to the list of attached files. - This is a callback to be used from - load()after evaluating the attached file the first time.- INPUT: - filename– string (the fully qualified file name) or- Pathobject
 - EXAMPLES: - sage: import sage.repl.attach as af sage: af.reset() sage: t = tmp_filename(ext='.py') sage: af.add_attached_file(t) sage: af.attached_files() ['/.../tmp_....py'] sage: af.detach(t) sage: af.attached_files() [] - >>> from sage.all import * >>> import sage.repl.attach as af >>> af.reset() >>> t = tmp_filename(ext='.py') >>> af.add_attached_file(t) >>> af.attached_files() ['/.../tmp_....py'] >>> af.detach(t) >>> af.attached_files() [] 
- sage.repl.attach.attach(*files)[source]¶
- Attach a file or files to a running instance of Sage and also load that file. - Note - Attaching files uses the Python inputhook, which will conflict with other inputhook users. This generally includes GUI main loop integrations, for example tkinter. So you can only use tkinter or attach, but not both at the same time. - INPUT: - files– list of filenames (strings) to attach
 - OUTPUT: - Each file is read in and added to an internal list of watched files. The meaning of reading in a file depends on the file type: - .pyfiles are read in with no preparsing (so, e.g.,- 2^3is 2 bit-xor 3);
- .sagefiles are preparsed, then the result is read in;
- .pyxfiles are not preparsed, but rather are compiled to a module- mand then- from m import *is executed.
 - The contents of the file are then loaded, which means they are read into the running Sage session. For example, if - foo.sagecontains- x=5, after attaching- foo.sagethe variable- xwill be set to 5. Moreover, any time you change- foo.sage, before you execute a command, the attached file will be re-read automatically (with no intervention on your part).- See also - load()is the same as- attach(), but does not automatically reload a file when it changes unless- attach=Trueis passed.- %attachmagic can also be used, see- attach().- EXAMPLES: - You attach a file, e.g., - foo.sageor- foo.pyor- foo.pyx, to a running Sage session by typing:- sage: attach('foo.sage') # not tested - >>> from sage.all import * >>> attach('foo.sage') # not tested - Here we test attaching multiple files at once: - sage: sage.repl.attach.reset() sage: t1 = tmp_filename(ext='.py') sage: with open(t1,'w') as f: _ = f.write("print('hello world')") sage: t2 = tmp_filename(ext='.py') sage: with open(t2,'w') as f: _ = f.write("print('hi there xxx')") sage: attach(t1, t2) hello world hi there xxx sage: af = attached_files(); len(af) 2 sage: t1 in af and t2 in af True - >>> from sage.all import * >>> sage.repl.attach.reset() >>> t1 = tmp_filename(ext='.py') >>> with open(t1,'w') as f: _ = f.write("print('hello world')") >>> t2 = tmp_filename(ext='.py') >>> with open(t2,'w') as f: _ = f.write("print('hi there xxx')") >>> attach(t1, t2) hello world hi there xxx >>> af = attached_files(); len(af) 2 >>> t1 in af and t2 in af True - See also - attached_files()returns a list of all currently attached files.
- detach()instructs Sage to remove a file from the internal list of watched files.
- load_attach_path()allows you to get or modify the current search path for loading and attaching files.
 
- sage.repl.attach.attached_files()[source]¶
- Return a list of all files attached to the current session with - attach().- OUTPUT: the filenames in a sorted list of strings - EXAMPLES: - sage: sage.repl.attach.reset() sage: t = tmp_filename(ext='.py') sage: with open(t,'w') as f: _ = f.write("print('hello world')") sage: attach(t) hello world sage: af = attached_files(); af ['/....py'] sage: af == [t] True - >>> from sage.all import * >>> sage.repl.attach.reset() >>> t = tmp_filename(ext='.py') >>> with open(t,'w') as f: _ = f.write("print('hello world')") >>> attach(t) hello world >>> af = attached_files(); af ['/....py'] >>> af == [t] True 
- sage.repl.attach.detach(filename)[source]¶
- Detach a file. - This is the counterpart to - attach().- INPUT: - filename– string, a list of strings or a tuple of strings or a- Path, a list of- Pathor a tuple of- Path
 - EXAMPLES: - sage: sage.repl.attach.reset() sage: t = tmp_filename(ext='.py') sage: with open(t,'w') as f: _ = f.write("print('hello world')") sage: attach(t) hello world sage: af = attached_files(); len(af) 1 sage: af == [t] True sage: detach(t) sage: attached_files() [] sage: sage.repl.attach.reset(); reset_load_attach_path() sage: load_attach_path() [PosixPath('.')] sage: t_dir = tmp_dir() sage: fullpath = os.path.join(t_dir, 'test.py') sage: with open(fullpath, 'w') as f: _ = f.write("print(37 * 3)") sage: load_attach_path(t_dir, replace=True) sage: attach('test.py') 111 sage: af = attached_files(); len(af) 1 sage: af == [os.path.normpath(fullpath)] True sage: detach('test.py') sage: attached_files() [] sage: attach('test.py') 111 sage: fullpath = os.path.join(t_dir, 'test2.py') sage: with open(fullpath, 'w') as f: _ = f.write("print(3)") sage: attach('test2.py') 3 sage: detach(attached_files()) sage: attached_files() [] - >>> from sage.all import * >>> sage.repl.attach.reset() >>> t = tmp_filename(ext='.py') >>> with open(t,'w') as f: _ = f.write("print('hello world')") >>> attach(t) hello world >>> af = attached_files(); len(af) 1 >>> af == [t] True >>> detach(t) >>> attached_files() [] >>> sage.repl.attach.reset(); reset_load_attach_path() >>> load_attach_path() [PosixPath('.')] >>> t_dir = tmp_dir() >>> fullpath = os.path.join(t_dir, 'test.py') >>> with open(fullpath, 'w') as f: _ = f.write("print(37 * 3)") >>> load_attach_path(t_dir, replace=True) >>> attach('test.py') 111 >>> af = attached_files(); len(af) 1 >>> af == [os.path.normpath(fullpath)] True >>> detach('test.py') >>> attached_files() [] >>> attach('test.py') 111 >>> fullpath = os.path.join(t_dir, 'test2.py') >>> with open(fullpath, 'w') as f: _ = f.write("print(3)") >>> attach('test2.py') 3 >>> detach(attached_files()) >>> attached_files() [] 
- sage.repl.attach.load_attach_mode(load_debug=None, attach_debug=None)[source]¶
- Get or modify the current debug mode for the behavior of - load()and- attach()on- .sagefiles.- In debug mode, loaded or attached - .sagefiles are preparsed through a file to make their tracebacks more informative. If not in debug mode, then- .sagefiles are preparsed in memory only for performance.- At startup, debug mode is - Truefor attaching and- Falsefor loading.- Note - This function should really be deprecated and code executed from memory should raise proper tracebacks. - INPUT: - load_debug– boolean or- None(default); if not- None, then set a new value for the debug mode for loading files
- attach_debug– boolean or- None(default); same as- load_debug, but for attaching files
 - OUTPUT: - If all input values are - None, returns a tuple giving the current modes for loading and attaching.- EXAMPLES: - sage: load_attach_mode() (False, True) sage: load_attach_mode(attach_debug=False) sage: load_attach_mode() (False, False) sage: load_attach_mode(load_debug=True) sage: load_attach_mode() (True, False) sage: load_attach_mode(load_debug=False, attach_debug=True) - >>> from sage.all import * >>> load_attach_mode() (False, True) >>> load_attach_mode(attach_debug=False) >>> load_attach_mode() (False, False) >>> load_attach_mode(load_debug=True) >>> load_attach_mode() (True, False) >>> load_attach_mode(load_debug=False, attach_debug=True) 
- sage.repl.attach.load_attach_path(path=None, replace=False)[source]¶
- Get or modify the current search path for - load()and- attach().- INPUT: - path– string or list of strings (default:- None); path(s) to append to or replace the current path
- replace– boolean (default:- False); if- pathis not- None, whether to replace the search path instead of appending to it
 - OUTPUT: none or a reference to the current search paths - EXAMPLES: - First, we extend the example given in - load()’s docstring:- sage: sage.repl.attach.reset(); reset_load_attach_path() sage: load_attach_path() [PosixPath('.')] sage: t_dir = tmp_dir() sage: fullpath = os.path.join(t_dir, 'test.py') sage: with open(fullpath, 'w') as f: ....: _ = f.write("print(37 * 3)") - >>> from sage.all import * >>> sage.repl.attach.reset(); reset_load_attach_path() >>> load_attach_path() [PosixPath('.')] >>> t_dir = tmp_dir() >>> fullpath = os.path.join(t_dir, 'test.py') >>> with open(fullpath, 'w') as f: ... _ = f.write("print(37 * 3)") - We put a new, empty directory on the attach path for testing (otherwise this will load - test.pyfrom the current working directory if that happens to exist):- sage: import tempfile sage: with tempfile.TemporaryDirectory() as d: ....: load_attach_path(d, replace=True) ....: attach('test.py') Traceback (most recent call last): ... OSError: did not find file 'test.py' to load or attach sage: load_attach_path(t_dir) sage: attach('test.py') 111 sage: af = attached_files(); len(af) 1 sage: af == [fullpath] True sage: from pathlib import Path sage: sage.repl.attach.reset(); reset_load_attach_path() sage: load_attach_path() == [Path('.')] True sage: with tempfile.TemporaryDirectory() as d: ....: load_attach_path(d, replace=True) ....: load('test.py') Traceback (most recent call last): ... OSError: did not find file 'test.py' to load or attach - >>> from sage.all import * >>> import tempfile >>> with tempfile.TemporaryDirectory() as d: ... load_attach_path(d, replace=True) ... attach('test.py') Traceback (most recent call last): ... OSError: did not find file 'test.py' to load or attach >>> load_attach_path(t_dir) >>> attach('test.py') 111 >>> af = attached_files(); len(af) 1 >>> af == [fullpath] True >>> from pathlib import Path >>> sage.repl.attach.reset(); reset_load_attach_path() >>> load_attach_path() == [Path('.')] True >>> with tempfile.TemporaryDirectory() as d: ... load_attach_path(d, replace=True) ... load('test.py') Traceback (most recent call last): ... OSError: did not find file 'test.py' to load or attach - The function returns a reference to the path list: - sage: reset_load_attach_path(); load_attach_path() [PosixPath('.')] sage: load_attach_path('/path/to/my/sage/scripts'); load_attach_path() [PosixPath('.'), PosixPath('/path/to/my/sage/scripts')] sage: load_attach_path(['good', 'bad', 'ugly'], replace=True) sage: load_attach_path() [PosixPath('good'), PosixPath('bad'), PosixPath('ugly')] sage: p = load_attach_path(); p.pop() PosixPath('ugly') sage: p[0] = 'weird'; load_attach_path() ['weird', PosixPath('bad')] sage: reset_load_attach_path(); load_attach_path() [PosixPath('.')] - >>> from sage.all import * >>> reset_load_attach_path(); load_attach_path() [PosixPath('.')] >>> load_attach_path('/path/to/my/sage/scripts'); load_attach_path() [PosixPath('.'), PosixPath('/path/to/my/sage/scripts')] >>> load_attach_path(['good', 'bad', 'ugly'], replace=True) >>> load_attach_path() [PosixPath('good'), PosixPath('bad'), PosixPath('ugly')] >>> p = load_attach_path(); p.pop() PosixPath('ugly') >>> p[Integer(0)] = 'weird'; load_attach_path() ['weird', PosixPath('bad')] >>> reset_load_attach_path(); load_attach_path() [PosixPath('.')] 
- sage.repl.attach.modified_file_iterator()[source]¶
- Iterate over the changed files. - As a side effect the stored time stamps are updated with the actual time stamps. So if you iterate over the attached files in order to reload them and you hit an error then the subsequent files are not marked as read. - Files that are in the process of being saved are excluded. - EXAMPLES: - sage: sage.repl.attach.reset() sage: t = tmp_filename(ext='.py') sage: attach(t) sage: from sage.repl.attach import modified_file_iterator sage: list(modified_file_iterator()) [] sage: sleep(1) # filesystem mtime granularity sage: with open(t, 'w') as f: _ = f.write('1') sage: list(modified_file_iterator()) [(PosixPath('/.../tmp_....py'), time.struct_time(...))] - >>> from sage.all import * >>> sage.repl.attach.reset() >>> t = tmp_filename(ext='.py') >>> attach(t) >>> from sage.repl.attach import modified_file_iterator >>> list(modified_file_iterator()) [] >>> sleep(Integer(1)) # filesystem mtime granularity >>> with open(t, 'w') as f: _ = f.write('1') >>> list(modified_file_iterator()) [(PosixPath('/.../tmp_....py'), time.struct_time(...))] 
- sage.repl.attach.reload_attached_files_if_modified()[source]¶
- Reload attached files that have been modified. - This is the internal implementation of the attach mechanism. - EXAMPLES: - sage: sage.repl.attach.reset() sage: from sage.repl.interpreter import get_test_shell sage: shell = get_test_shell() sage: tmp = tmp_filename(ext='.py') sage: with open(tmp, 'w') as f: _ = f.write('a = 2\n') sage: shell.run_cell('attach({0})'.format(repr(tmp))) sage: shell.run_cell('a') 2 sage: sleep(1) # filesystem mtime granularity sage: with open(tmp, 'w') as f: _ = f.write('a = 3\n') - >>> from sage.all import * >>> sage.repl.attach.reset() >>> from sage.repl.interpreter import get_test_shell >>> shell = get_test_shell() >>> tmp = tmp_filename(ext='.py') >>> with open(tmp, 'w') as f: _ = f.write('a = 2\n') >>> shell.run_cell('attach({0})'.format(repr(tmp))) >>> shell.run_cell('a') 2 >>> sleep(Integer(1)) # filesystem mtime granularity >>> with open(tmp, 'w') as f: _ = f.write('a = 3\n') - Note that the doctests are never really at the command prompt where the automatic reload is triggered. So we have to do it manually: - sage: shell.run_cell('from sage.repl.attach import reload_attached_files_if_modified') sage: shell.run_cell('reload_attached_files_if_modified()') ### reloading attached file tmp_....py modified at ... ### sage: shell.run_cell('a') 3 sage: shell.run_cell('detach({0})'.format(repr(tmp))) sage: shell.run_cell('attached_files()') [] sage: shell.quit() - >>> from sage.all import * >>> shell.run_cell('from sage.repl.attach import reload_attached_files_if_modified') >>> shell.run_cell('reload_attached_files_if_modified()') ### reloading attached file tmp_....py modified at ... ### >>> shell.run_cell('a') 3 >>> shell.run_cell('detach({0})'.format(repr(tmp))) >>> shell.run_cell('attached_files()') [] >>> shell.quit() 
- sage.repl.attach.reset()[source]¶
- Remove all the attached files from the list of attached files. - EXAMPLES: - sage: sage.repl.attach.reset() sage: t = tmp_filename(ext='.py') sage: with open(t,'w') as f: _ = f.write("print('hello world')") sage: attach(t) hello world sage: af = attached_files(); len(af) 1 sage: af == [t] True sage: sage.repl.attach.reset() sage: attached_files() [] - >>> from sage.all import * >>> sage.repl.attach.reset() >>> t = tmp_filename(ext='.py') >>> with open(t,'w') as f: _ = f.write("print('hello world')") >>> attach(t) hello world >>> af = attached_files(); len(af) 1 >>> af == [t] True >>> sage.repl.attach.reset() >>> attached_files() [] 
- sage.repl.attach.reset_load_attach_path()[source]¶
- Reset the current search path for - load()and- attach().- The default path is - '.'plus any paths specified in the environment variable- SAGE_LOAD_ATTACH_PATH.- EXAMPLES: - sage: load_attach_path() [PosixPath('.')] sage: t_dir = tmp_dir() sage: load_attach_path(t_dir) sage: from pathlib import Path sage: Path(t_dir) in load_attach_path() True sage: reset_load_attach_path(); load_attach_path() [PosixPath('.')] - >>> from sage.all import * >>> load_attach_path() [PosixPath('.')] >>> t_dir = tmp_dir() >>> load_attach_path(t_dir) >>> from pathlib import Path >>> Path(t_dir) in load_attach_path() True >>> reset_load_attach_path(); load_attach_path() [PosixPath('.')] - At startup, Sage adds colon-separated paths in the environment variable - SAGE_LOAD_ATTACH_PATH:- sage: reset_load_attach_path(); load_attach_path() [PosixPath('.')] sage: os.environ['SAGE_LOAD_ATTACH_PATH'] = '/veni/vidi:vici:' sage: from importlib import reload sage: reload(sage.repl.attach) # Simulate startup <module 'sage.repl.attach' from '...'> sage: load_attach_path() [PosixPath('.'), PosixPath('/veni/vidi'), PosixPath('vici')] sage: del os.environ['SAGE_LOAD_ATTACH_PATH'] sage: reload(sage.repl.preparse) # Simulate startup <module 'sage.repl.preparse' from '...'> sage: reset_load_attach_path(); load_attach_path() [PosixPath('.')] - >>> from sage.all import * >>> reset_load_attach_path(); load_attach_path() [PosixPath('.')] >>> os.environ['SAGE_LOAD_ATTACH_PATH'] = '/veni/vidi:vici:' >>> from importlib import reload >>> reload(sage.repl.attach) # Simulate startup <module 'sage.repl.attach' from '...'> >>> load_attach_path() [PosixPath('.'), PosixPath('/veni/vidi'), PosixPath('vici')] >>> del os.environ['SAGE_LOAD_ATTACH_PATH'] >>> reload(sage.repl.preparse) # Simulate startup <module 'sage.repl.preparse' from '...'> >>> reset_load_attach_path(); load_attach_path() [PosixPath('.')]