Explore >> Select a destination


You are here

fuzzyblog.io
| | akaptur.github.com
4.1 parsecs away

Travel
| | Nick Coghlan added another interesting note in response to my last post about creating side-effecting assignments in python. Here's Nick: @ ...
| | kqueue.org
5.6 parsecs away

Travel
| | It has been a while since I blogged last time. One change is that I started to have nightmares about me forgetting to prepare for lecture, rather than forgetting to turn in homework as in the past 20(?) years-life does get better.
| | www.learnpython.dev
4.2 parsecs away

Travel
| | Free Learn Python Course by Nina Zakharenko - An intensive two day introduction and intermediate course on Python. Video course published on Frontend Masters.
| | aivarsk.com
8.5 parsecs away

Travel
| I have a piece of C++ code that calls user-defined functions implemented in Python. Instead of requiring all functions to have the same signature with 6 arguments, the C++ code inspects the function signature and passes only the arguments function accepts - 1, 3, or all 6 of them. I use the inspect module and getargspec function for that but it feels a bit wrong and bloated. So let's see how we can get the work done without the inspect module.