bicycle1885 / Fmt.jl

Python-style format strings for Julia
MIT License
40 stars 3 forks source link

Debug format {x=} #4

Open t-bltg opened 2 years ago

t-bltg commented 2 years ago

Per https://bugs.python.org/issue36817.

>>> x = 3.14159
>>> f'{x=}'
'x=3.14159'

Allows to use {$var=} syntax:

julia> using Fmt
julia> x = 3.14159;
julia> f"{$x=}"
"x=3.14159"

Fix https://github.com/bicycle1885/Fmt.jl/issues/1.

@bicycle1885, do you plan to release this package ? That'd be awesome !

zsz00 commented 2 years ago

@t-bltg Hopefully you will continue to develop and maintain this package, via fork or copy code. or push this function to julia master !! f-string for Julia is very useful...

t-bltg commented 2 years ago

It's a shame we have no answer from @bicycle1885 :/

zsz00 commented 2 years ago

So hopefully you will continue to develop on a fork !! Wee have been waiting for him over a year

t-bltg commented 2 years ago

I think forking and releasing is a bit aggressive atm (and it's been 6 month, not a year). I'll drop an email to the repo owner first, and see if we can get an answer (EDIT: sent). I'm wondering if there are best practices / guidelines in the julia community for handling abandoned repos ?

zsz00 commented 2 years ago

so, I hope you can continue to develop on a fork or a copy .. have many copy cases in the julia community

t-bltg commented 1 year ago

@bicycle1885 bump ?