diff --git a/src/libpython_clj2/python.clj b/src/libpython_clj2/python.clj index bb2c4f0..f0a35a1 100644 --- a/src/libpython_clj2/python.clj +++ b/src/libpython_clj2/python.clj @@ -490,8 +490,10 @@ user> (py/call-attr inst \"addarg\" 10) (defmacro py. "Class/object method syntax. (py. obj method arg1 arg2 ... argN) is equivalent to Python's obj.method(arg1, arg2, ..., argN) syntax." - [x & args] - (list* (into (vector #'$a x) args))) + [x method-name & args] + ;; method-name cast to a string specifically for go and go-loop + ;; compatability + `(~#'$a ~x ~(str method-name) ~@args)) (defmacro py* pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy