[issue39540] Logging docs don't address the creation of multiple loggers when a hierarchy is provided

2020-02-03 Thread Alexander McFarlane
New submission from Alexander McFarlane : If `logger_name` is a hierarchy format (e.g. `logger_name = 'parent.child'`) and the logger name `'parent'` has not been created, the function call `logging.getLogger(logger_name)` will create all loggers in the hierarchy (in this instance two

[issue31798] `site.abs__file__` fails for modules where `__file__` cannot be modified

2017-10-16 Thread Alexander McFarlane
Change by Alexander McFarlane <alex.mcfarlane...@gmail.com>: -- title: "abs__file__" in "Lib/site.py" fails for modules where "__file__" cannot be assigned a new value -> `site.abs__file__` fails for modul

[issue31798] "abs__file__" in "Lib/site.py" fails for modules where "__file__" cannot be assigned a new value

2017-10-16 Thread Alexander McFarlane
Change by Alexander McFarlane <alex.mcfarlane...@gmail.com>: -- type: -> crash ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue31798] "abs__file__" in "Lib/site.py" fails for modules where "__file__" cannot be assigned a new value

2017-10-16 Thread Alexander McFarlane
New submission from Alexander McFarlane <alex.mcfarlane...@gmail.com>: The pythonnet module clr causes a TypeError when `abs__file__` attempts to run the following line: `m.__file__ = os.path.abspath(m.__file__)` Reproduction: ``` import clr cls.__file__ = 'e

[issue31798] abs__file__ in "Lib/site.py"

2017-10-16 Thread Alexander McFarlane
Change by Alexander McFarlane <alex.mcfarlane...@gmail.com>: -- nosy: Alexander McFarlane priority: normal severity: normal status: open title: abs__file__ in "Lib/site.py" ___ Python tracker <rep...@bugs.python.org> &l