This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from contextlib import contextmanager | |
import errno | |
import json | |
import os | |
import shutil | |
import sys | |
import tempfile | |
from notebook.notebookapp import main as notebook_main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/rust/engine/process_execution/src/local.rs b/src/rust/engine/process_execution/src/local.rs | |
index 05e8e3a..73ecf5a 100644 | |
--- a/src/rust/engine/process_execution/src/local.rs | |
+++ b/src/rust/engine/process_execution/src/local.rs | |
@@ -1,10 +1,12 @@ | |
extern crate tempfile; | |
use boxfuture::{BoxFuture, Boxable}; | |
-use fs::{self, GlobMatching, PathGlobs, PathStatGetter, StrictGlobMatching}; | |
+use fs::{self, GlobMatching, PathGlobs, PathStatGetter, Snapshot, StrictGlobMatching}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/rust/engine/process_execution/src/local.rs b/src/rust/engine/process_execution/src/local.rs | |
index 05e8e3a..a7ed55d 100644 | |
--- a/src/rust/engine/process_execution/src/local.rs | |
+++ b/src/rust/engine/process_execution/src/local.rs | |
@@ -1,8 +1,10 @@ | |
extern crate tempfile; | |
use boxfuture::{BoxFuture, Boxable}; | |
-use fs::{self, GlobMatching, PathGlobs, PathStatGetter, StrictGlobMatching}; | |
+use fs::{self, GlobMatching, PathGlobs, PathStatGetter, Snapshot, StrictGlobMatching}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[omerta ~]$ python2.7 | |
Python 2.7.13 (default, Mar 2 2017, 16:22:01) | |
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import requests | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
ImportError: No module named requests | |
>>> |
OlderNewer