JuliaPy / PyCall.jl

Package to call Python functions from the Julia language
MIT License
1.47k stars 187 forks source link

A few fixes for julia master #1059

Closed yuyichao closed 11 months ago

yuyichao commented 11 months ago
  1. Fix use of cconvert(Cwstring). This may count as a breakage from base julia but it's a bit of a grey area. It may be argued that the return type for cconvert isn't really guaranteed.
  2. Docs.doc is defined in base but the methods are defined in REPL. With REPL moved out of the sysimg by default this needs to be loaded explicitly.
stevengj commented 11 months ago

Thanks!