This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Argument Clinic: when cloning functions with path_t, path_t retains the old name
Type: behavior Stage: needs patch
Components: Argument Clinic Versions: Python 3.4
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: larry Nosy List: larry
Priority: normal Keywords:

Created on 2014-01-29 05:26 by larry, last changed 2022-04-11 14:57 by admin.

Messages (1)
msg209615 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2014-01-29 05:26
If you have:

    module.f1
       path: path_t

    ...

    module.f2 = module.f1

Then the initializer for "path" in module_f2 will supply "f1" as the function name for error messages.
History
Date User Action Args
2022-04-11 14:57:57adminsetgithub: 64631
2015-02-25 15:25:49serhiy.storchakasetcomponents: + Argument Clinic
2014-01-29 05:26:03larrycreate