[issue40383] weakref class name are hardcoded in reprs

2020-11-16 Thread OhBonsai
Change by OhBonsai : -- nosy: -OhBonsai ___ Python tracker <https://bugs.python.org/issue40383> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40383] weakref class name are hardcoded in reprs

2020-04-26 Thread OhBonsai
Change by OhBonsai : -- components: +Library (Lib) -Documentation nosy: -docs@python ___ Python tracker <https://bugs.python.org/issue40383> ___ ___ Python-bug

[issue40383] weakref class name are hardcoded in reprs

2020-04-25 Thread OhBonsai
Change by OhBonsai : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue40383> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40383] weakref class name are hardcoded in reprs

2020-04-24 Thread OhBonsai
Change by OhBonsai : -- assignee: -> docs@python components: +Documentation -Extension Modules nosy: +docs@python title: some class name are hardcoded in reprs -> weakref class name are hardcoded in reprs ___ Python tracker

[issue40383] some class name are hardcoded in reprs

2020-04-24 Thread OhBonsai
Change by OhBonsai : -- keywords: +patch pull_requests: +19027 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19707 ___ Python tracker <https://bugs.python.org/issu

[issue40383] some class name are hardcoded in reprs

2020-04-24 Thread OhBonsai
New submission from OhBonsai : Same with #21861 #27541 hard-coding in https://github.com/python/cpython/blob/master/Objects/weakrefobject.c#L162 __repr__ - Reproducing >>> import weakref >>> class ExtendRef(weakref.ref): pass ... >>> class Obj(): pass ..