Skip to content

Commit 0550f89

Browse files
committed
clarify py eval/exec behavior (closes #434)
1 parent 7eab67e commit 0550f89

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ and also by providing more type information to the Julia compiler.
339339
type-conversion). Unlike the `@pyimport` macro, this does not
340340
define a Julia module and members cannot be accessed with `s.name`.
341341

342-
* `py"..."` evaluates `"..."` as a Python string and returns the result
342+
* `py"..."` evaluates `"..."` as a Python string, equivalent to
343+
Python's [`eval`](https://docs.python.org/2/library/functions.html#eval) function, and returns the result
343344
converted to `PyAny`. Alternatively, `py"..."o` returns the raw `PyObject`
344345
(which can then be manually converted if desired). You can interpolate
345346
Julia variables and other expressions into the Python code with `$`,
@@ -355,7 +356,7 @@ and also by providing more type information to the Julia compiler.
355356
If you use `py"""..."""` to pass a *multi-line* string, the string can
356357
contain arbitrary Python code (not just a single expression) to be evaluated,
357358
but the return value is `nothing`; this is useful e.g. to define pure-Python
358-
functions. (If you define a Python global `g` in a multiline `py"""..."""`
359+
functions, and is equivalent to Python's [`exec`](https://docs.python.org/2/reference/simple_stmts.html#exec) statement. (If you define a Python global `g` in a multiline `py"""..."""`
359360
string, you can retrieve it in Julia by subsequently evaluating `py"g"`.)
360361

361362
* `pybuiltin(s)`: Look up `s` (a string or symbol) among the global Python

0 commit comments

Comments
 (0)