You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--private - only functions and methods with a name that starts with _
--unprivate (or --public - but --unprivate is more consistent with --undocumented and --untypedand--unasync`) - exclude those private methods and functions
--dunder - only functions and methods that match are __blah__.
Open question: should --private return __init__ etc? Are dunder methods considered private? I think probably not.
The text was updated successfully, but these errors were encountered:
Maybe like this:
--private
- only functions and methods with a name that starts with_
--unprivate
(or--public
- but--unprivate
is more consistent with--undocumented and
--untypedand
--unasync`) - exclude those private methods and functions--dunder
- only functions and methods that match are__blah__
.Open question: should
--private
return__init__
etc? Are dunder methods considered private? I think probably not.The text was updated successfully, but these errors were encountered: