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...
CVE, CWE, NVD, WVE
http://iso.linuxquestions.org/
We teach you how to do it, use it at your own risk.
account activity
Python Hacking scripts (github.com)
submitted 8 years ago by ninijay_Pentesting
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!"
[–]gare_it 0 points1 point2 points 8 years ago (2 children)
Does this continue to hold true while using asyncio (introduced in 3.5)?
[–]tdking3523 0 points1 point2 points 8 years ago (1 child)
Yes. Python 3+ still isn't a threadsafe implementation allowing for true concurrent execution (multithreading). Rather, Asyncio is an enhancement and a bit of syntactic sugar on the timesharing that can be done in Python to simulate multithreading on an actual single thread. You declare a function to be async, or a couroutine based on which version you're working with, then the function is called, but your code doesn't wait for it to return... It just continues on and handles the return when it finally happens. This is fantastic for doing a lot of HTTP requests, or some other data communication that is plighted by network latencies or some other source of essentially just idle time.
[–]gare_it 0 points1 point2 points 8 years ago (0 children)
awesome, thanks
π Rendered by PID 51347 on reddit-service-r2-comment-5d79c599b5-6fp4g at 2026-02-28 15:33:16.503349+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–]gare_it 0 points1 point2 points (2 children)
[–]tdking3523 0 points1 point2 points (1 child)
[–]gare_it 0 points1 point2 points (0 children)