Curtis Vogt
Curtis Vogt
The TimeZones.jl package supports reading the tzfile format. We should add this to format in https://github.com/JuliaIO/FileIO.jl
> - If an argument list extends to multiple lines, align new lines to the parenthesis/bracket/etc. that started the argument list. > - In argument lists, always separate positional arguments...
> The `return` keyword should always be omitted from return statements within short-form method definitions (`f(...) = ...`). The `return` keyword should never be omitted from return statements within any...
It would be good to indicate the package is deprecated in the README.
The `now()` function returns the current time in the system's local time zone. The code here adds the `Z` suffix which indicates UTC time: https://github.com/JuliaPackaging/Scratch.jl/blob/df4d65620ea65816ba4c2f586d3d790db3dc99c6/src/Scratch.jl#L150 ```julia julia> using Dates julia>...
Closing a `ResponseStream` would still allow you to continue reading content from the buffer. I've updated the code to work similarly to how `IOStream`'s behave.
```julia julia> using URIs julia> uri = URI("postgresql://localhost:5432/postgres") URI("postgresql://localhost:5432/postgres") julia> URI(uri; userinfo="user:password") ERROR: ArgumentError: backtrace() requires scheme in uses_authority || isempty(host) Stacktrace: [1] macro expansion @ ~/.julia/packages/URIs/o9DQG/src/debug.jl:52 [inlined] [2] URI(uri::URI;...
Should be done before we have a LibCURL 1.0 release
Currently enabling threads using this action require you to set the enviromental variable `JULIA_NUM_THREADS`. Although this does work there is no way to use this variable to [specify "auto" on...
Supports using `Period`s or `Time` to replace fields in a given `DateTime`. Addresses part of: https://github.com/JuliaLang/julia/issues/24814