[issue13855] Add qualname support to types.FunctionType

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13855] Add qualname support to types.FunctionType

2014-07-03 Thread Mark Lawrence
Mark Lawrence added the comment: Note that #13672 refers to #12857. -- nosy: +BreamoreBoy type: behavior - enhancement versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13855

[issue13855] Add qualname support to types.FunctionType

2012-01-24 Thread Meador Inge
New submission from Meador Inge mead...@gmail.com: As mentioned in issue13672 currently there is no way to specify a qualname on types.FunctionType: def f(): ...def g(): ... pass ...return g ... g = f() g function f.locals.g at 0x7f1dac4d8ba0 types.FunctionType(f.__code__,

[issue13855] Add qualname support to types.FunctionType

2012-01-24 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13855 ___