Pete Fein
Pete Fein
It'd be handy to be able to specify custom templates on a per project basis without forking the entirety of `drf-generators`. Basically, I'm thinking a command line option on the...
This probably needs more work (tests or whatever), and perhaps there's a cleaner approach, but it suits my purposes and didn't eat my lunch. Refs #22. Adds `--template` / `-t`...
Per [mailing list discussion](http://groups.google.com/group/easyxdm/browse_thread/thread/22656ec106510de0), callbacks on Socket/Rpc (onReady, others) should have 'this' set to the Socket/Rpc instance.
When a duckdb database has both a catalog and a schema with the same name, the `IMPORT FOREIGN SCHEMA` command fails. Seems to be originating here https://github.com/alitrack/duckdb_fdw/blob/90578bc59019048d6183b2014cb100dc827966fc/duckdb_fdw.c#L3055 For example, I...
This might give a bit nicer results: http://pygments.org/docs/lexers/#pygments.lexers.python.PythonConsoleLexer
this looks helpful https://blog.sqreen.io/dynamic-instrumentation-agent-for-python/
A layer that support API compatibility with stdlib logging module for client operations only. The following code should just work: ``` from twiggy import logging_compat as logging log = logging.getLogger("oldcode")...
initial work on #85
Support passing a literal string when emitting a message, with no format parameters. Also support passing an object as the text part of the message, which will have `repr` called...