aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-06-16 16:15:18 -0400
committerbnewbold <bnewbold@robocracy.org>2016-06-16 16:15:18 -0400
commit4e69cacd06fa729ed108df7f73dd0280cbdc0e7e (patch)
treec62176062a6c175bd199b16f078e19053c5a2a1c
parent84f6fc774ef06c44ddb03df67636e68d4d53cb40 (diff)
downloadPyX.jl-4e69cacd06fa729ed108df7f73dd0280cbdc0e7e.tar.gz
PyX.jl-4e69cacd06fa729ed108df7f73dd0280cbdc0e7e.zip
doc: add pyrecwrap.jl gist link
-rw-r--r--HACKING7
1 files changed, 5 insertions, 2 deletions
diff --git a/HACKING b/HACKING
index 8e32954..5d41b6a 100644
--- a/HACKING
+++ b/HACKING
@@ -14,8 +14,8 @@ Using PyCall, we can map python modules to Julia modules with the same syntax:
julia> os.uname()
julia> os.O_RDONLY
-And using a recursive version of pywrap (`pyrecwrap`), we can get nested
-modules to map also:
+And using a recursive version of pywrap (`pyrecwrap`, see below), we can get
+nested modules to map also:
python> import os
python> os.path.genericpath.os.uname()
@@ -46,3 +46,6 @@ dot ('.') operator can be overridden (as of Julia 0.4 it may not).
The work around used in this project (PyX.jl) is to use underscores in
object/function names and dots in object/module names. Eg,
`style.linewidth(0.2)` vs. `style_linewidth.THICK`.
+
+Note: pyrecwrap can be found in the "pyrecwrap" branch of this repo, or at
+https://gist.github.com/bnewbold/b9a701e06b9da319a58dc9526b09c4a5