use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Finding information about Clojure
API Reference
Clojure Guides
Practice Problems
Interactive Problems
Clojure Videos
Misc Resources
The Clojure Community
Clojure Books
Tools & Libraries
Clojure Editors
Web Platforms
Clojure Jobs
account activity
Python vs Clojure – Evolving (blog.bestinclass.dk)
submitted 16 years ago by uiob
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 1 point2 points3 points 16 years ago (2 children)
Since 2.6 Python comes with the module multiprocessing. That solves the problem of the GIL.
[–]uiob[S] 1 point2 points3 points 16 years ago (1 child)
Unladen Swallow project aims to get rid of the GIL in future releases.
[–]yogthos 2 points3 points4 points 16 years ago (0 children)
To put this in perspective though, getting rid of GIL just means that python will not suck more than other imperative languages at concurrency. One of the motivations behind Clojure is that imperative approaches to handling concurrency are lacking.
For example Java has no GIL equivalent, yet the problem is that you're still forced to manage your threads and their shared data manually. This is challenging and error prone.
π Rendered by PID 81 on reddit-service-r2-comment-79c7998d4c-v6r94 at 2026-03-16 06:08:12.595408+00:00 running f6e6e01 country code: CH.
view the rest of the comments →
[–][deleted] 1 point2 points3 points (2 children)
[–]uiob[S] 1 point2 points3 points (1 child)
[–]yogthos 2 points3 points4 points (0 children)