Skip to content

Commit 6dc42ab

Browse files
committed
make ! notation more consistent
1 parent 420e1e0 commit 6dc42ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/clojure_python/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(declare ^:dynamic *interp*)
66

7-
(defn append-paths!
7+
(defn append-paths
88
"appends a vector of paths to the python system path"
99
[libpaths]
1010
(.exec *interp* "import sys")

test/clojure_python/t_core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(fact "append-paths adds the path to system path"
66
(binding [base/*interp* (org.python.util.PythonInterpreter.)]
7-
(-> (#'base/append-paths! ["test/clojure_python/"])
7+
(-> (#'base/append-paths ["test/clojure_python/"])
88
.getLocals
99
(.__getitem__ "sys")
1010
.path

0 commit comments

Comments
 (0)