Rian Hunter
Rian Hunter
Need to return an error on pending callbacks when the connection dies, otherwise waiting callbacks will hang forever.
Small functionality enhancement. By the way, how would I go about getting this change into sqlite3 bundled with Python?
### FluidSynth version ``` FluidSynth runtime version 2.1.7 Copyright (C) 2000-2021 Peter Hanappe and others. Distributed under the LGPL license. SoundFont(R) is a registered trademark of E-mu Systems, Inc. FluidSynth...
**Feature** When creating closures, such as: ```Python import typing def wrap(func: typing.Callable[..., int]): def _new(val) -> int: try: return func(val) except Exception: return 0 return _new the following: ``` There...
`CPyArg_ParseStackAndKeywordsSimple()` uses stdarg.h `va_start()` and friends to copy vector elements into its arguments. This usually prevents the compiler from eliding these moves even at the highest optimization levels. If instead...
Right now when a "invalid_account_type/feature/" error happens on `files/upload` the Python SDK throws an error of `UploadError('other', None)` instead of something more informative. Referenced here: https://github.com/rianhunter/dbxfs/issues/17
pselect() is broken on macOS. This isn't officially documented anywhere but there are hints of it in this article: https://daniel.haxx.se/blog/2016/10/11/poll-on-mac-10-12-is-broken/ To safely handle SIGCHLD/SIGWINCH without blocking them, use the "self-pipe"...
New versions of wabt reject spec test assertions `assert_return_canonical_nan` and `assert_return_arithmetic_nan` since https://github.com/WebAssembly/wabt/commit/415c3bb1b70c5edc9beb3a7e2cea5d9247e1e52c. This repo still uses those old assertions and doesn't work with current versions of wabt anymore. Ideally...
If I write a value of "x" at time "a," then I write the same value at time "b" sequentially afterwards, will this require more storage in mdb?
Getting a missing `CPyModule__ctypes` when trying to compile the following file: ```python import ctypes class c_timespec(ctypes.Structure): pass ``` mypyc seems to be incorrectly parsing the `ctypes` stub file and now...