[Python-Dev] Status of the Argument Clinic DSL (original) (raw)
Alexander Belopolsky alexander.belopolsky at gmail.com
Thu Aug 4 19:04:53 EDT 2016
- Previous message (by thread): [Python-Dev] Status of the Argument Clinic DSL
- Next message (by thread): [Python-Dev] Status of the Argument Clinic DSL
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Thu, Aug 4, 2016 at 7:00 PM, Brett Cannon <brett at python.org> wrote:
>>> os.rename.textsignature '($module, /, src, dst, *, srcdirfd=None, dstdirfd=None)'
? What does the "$module, /," part mean? Don't remember what the $module means but the / means positional-only arguments.
Not in this case. Apparently the / applies to the $module thingy because src and dst are not positional only (and the / would be after them if they were, I think.)
- Previous message (by thread): [Python-Dev] Status of the Argument Clinic DSL
- Next message (by thread): [Python-Dev] Status of the Argument Clinic DSL
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]