You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -339,7 +339,8 @@ and also by providing more type information to the Julia compiler.
339
339
type-conversion). Unlike the `@pyimport` macro, this does not
340
340
define a Julia module and members cannot be accessed with `s.name`.
341
341
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
343
344
converted to `PyAny`. Alternatively, `py"..."o` returns the raw `PyObject`
344
345
(which can then be manually converted if desired). You can interpolate
345
346
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.
355
356
If you use `py"""..."""` to pass a *multi-line* string, the string can
356
357
contain arbitrary Python code (not just a single expression) to be evaluated,
357
358
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"""..."""`
359
360
string, you can retrieve it in Julia by subsequently evaluating `py"g"`.)
360
361
361
362
*`pybuiltin(s)`: Look up `s` (a string or symbol) among the global Python
0 commit comments