Chris Rink
Chris Rink
Hi there! I am having an issue trying to `.defer()` a task from another task. ### Issue Here's a minimum example: ```python from procrastinate import AiopgConnector, App app = App(connector=AiopgConnector())...
# Checklist - [ ] I have verified that the issue exists against the `main` branch of Celery. - [ ] This has already been asked to the [discussions forum](https://github.com/celery/celery/discussions)...
[Enter steps to reproduce below:] 1. Open up project. 2. Switch between open files. 3. See exception. **Atom Version**: 0.189.0 **System**: Mac OS X 10.10.2 **Thrown From**: [remember-session](https://github.com/hampustagerud/atom-remember-session) package, v0.5.1...
Basilisp should support loading Clojure libs and [`.cljc` files](https://clojure.org/guides/reader_conditionals#_introduction) natively.
Currently, Basilisp copies the standard streams into its own versions at startup: ```clojure (def ^:dynamic *in* sys/stdin) (def ^:dynamic *out* sys/stdout) (def ^:dynamic *err* sys/stderr) ``` But if the Python...
Fixes #873 Users could probably stumble into some bizarre behavior with these until #839 is completed since the except hook functions use `sys.stderr` by default, which does not always track...
Basilisp should have a dynamic Var which is an except hook which can be installed at `sys.excepthook` to allow for customizing exceptions from Basilisp code.
Currently, info messages and warnings are simply emitted by the Basilisp compiler (analyzer) logger, which is just a standard Python logger. Errors are generally exceptions which immediately stop the compilation...
Hide the arity dispatch map for multi-arity functions with `@runtime._basilisp_fn` decorator and a self-reference within the arity dispatch function.