When I switched to Windows Terminal and Powershell, Python's REPL stopped tracking my command history. Hacking the registry fixed the problem.
When I switched to Windows Terminal and Powershell, Python's REPL stopped tracking my command history. Hacking the registry fixed the problem.
I'm using dotbot to manage a multi-platform git config. You can, too!
listparser 0.19 has been released.
pelican-granular-signals now officially supports Python 3.10.
pelican-precompress now officially supports Python 3.10.
pelican-granular-signals will send signals to your plugins at the right time, every time.
pelican-precompress 2.1.0 guarantees that it'll run after your other plugins have generated content. Beat the rush and upgrade now!
Code styles are the result of personal preferences, past experiences, and code editor settings (and plugins!). Discussing code style in code reviews is unproductive. Put code style checks in pre-commit hooks where they belong.
Now that I've covered the basics of monkeypatching, it's time to dig deeper.
When you monkeypatch a function, you're limited to accessing the function's parameters and other data in its global scope. This article is an introduction to one way that you could access data in the calling function's local scope.
Monkeypatching is a common word among Python programmers. But what is it?
This post is an introduction to monkeypatching.