James Brown
James Brown
For debugging and whatnot
The toro dependency no longer works with modern Pythons. I think the best option is to bump the minimum supported tornado version and use the native asyncio synchronization primitives.
toro relies on the setuptools 2to3 helper, which is gone in current setuptools just use native `asyncio.Queue` instead on Python 3.x Fixes #12
So, I just got this built on OS X (by changing the makefile to reference stuff from Homebrew; why doesn't libjpeg have pkg-config, blargh) and once I try to connect...
This adds [LuaFormatter](https://github.com/Koihik/LuaFormatter) as a formatter for lua. As far as I can tell, it doesn't support stdin/stdout (passing an argument of `-` attempts to format a literal file named...
**Describe the bug** After upgrading from 8.0.7 to 8.0.10, jobs with `until_and_while_executing` that pass a custom `lock_args_method` which behaves differently on the server and the client (as shown in the...
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it When editing ERB templates in Zed, I'm getting two strange behaviors: -...
This will be required to support Ruby 3.5.0, and is emitting a deprecation warning as of Ruby 3.3.5. Also, changes version logic to use `Gem::Version` for the inevitable future when...
`ostruct` is being removed from the standard library in Ruby 3.5.0 and as of Ruby 3.3.5, there's no a deprecation warning on every `rack-tracker` import: ``` /src/vendor/bundle/ruby/3.3.0/gems/rack-tracker-1.13.0/lib/rack/tracker/extensions.rb:1: warning: /usr/local/lib/ruby/3.3.0/ostruct.rb was...
The following code crashes with `TypeError: allocator undefined for Enumerator::ArithmeticSequence`: ```ruby (1..1000).step(10).tqdm ``` Would it be reasonable to special-case some enumerators to avoid cloning?