Some (potential) context to this is that at Clojure Conj there was a discussion of the potential for clojure expressions to become a standard data serialization format. The idea is that clojure data is significantly more rich than something like JSON.
It's a way to share data with a clojure application. And s-expressions are a pretty good format for data transfer so it's not a terrible idea to provide ways for people to use it as such.
[+] [-] ericmoritz|14 years ago|reply
[+] [-] atdt|14 years ago|reply
>>> dict(user='root', password='secret') {'password': 'secret', 'user': 'root'} >>> "marry had a little lamb".split() ['marry', 'had', 'a', 'little', 'lamb']
[+] [-] pashields|14 years ago|reply
In fact, as I understand it, some of the changes to the reader in 1.4 are aimed at working on this goal. You can read a little about this at http://dev.clojure.org/pages/viewpage.action?pageId=950382
[+] [-] csears|14 years ago|reply
[+] [-] dustingetz|14 years ago|reply
[+] [-] overshard|14 years ago|reply
If you like clojure and must program in python, have an idea of how to implement something in clojure but not in python then just use clojure now.
[+] [-] zaphar|14 years ago|reply
[+] [-] mytrile|14 years ago|reply
[deleted]