forked from M-Labs/artiq
1
0
Fork 0

Revert "coredevice: automatically close on pause"

This reverts commit 1f50b3428e.
This commit is contained in:
Sebastien Bourdeauducq 2016-06-11 10:12:36 -06:00
parent eb359ce50b
commit b9c3edd49f
2 changed files with 0 additions and 6 deletions

View File

@ -30,8 +30,6 @@ unreleased [2.x]
(you may need to replace python3.5 with python) (you may need to replace python3.5 with python)
Please always include the console output when reporting a GUI crash. Please always include the console output when reporting a GUI crash.
* Closing the core device communications before pausing is done automatically.
Experiments no longer need to do it explicitly.
* The result folders are formatted "%Y-%m-%d/%H instead of "%Y-%m-%d/%H-%M". * The result folders are formatted "%Y-%m-%d/%H instead of "%Y-%m-%d/%H-%M".
(i.e. grouping by day and then by hour, instead of by day and then by minute) (i.e. grouping by day and then by hour, instead of by day and then by minute)
* GUI tools save their state file in the user's home directory instead of the * GUI tools save their state file in the user's home directory instead of the

View File

@ -92,10 +92,6 @@ class CommGeneric:
The channel is assumed to be opened.""" The channel is assumed to be opened."""
raise NotImplementedError raise NotImplementedError
def pause(self):
self.close()
# #
# Reader interface # Reader interface
# #