Chris Rink

Results 57 issues of 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())...

Issue type: Bug 🐞
Issue contains: Exploration & Design decisions 🤯
Issue contains: Some Python 🐍

# 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)...

Issue Type: Bug Report

[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.

issue-type:enhancement
component:compiler

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...

question
lang

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...

question
wip

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.

issue-type:enhancement
lang

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...

issue-type:enhancement
component:compiler

Hide the arity dispatch map for multi-arity functions with `@runtime._basilisp_fn` decorator and a self-reference within the arity dispatch function.

question
wip