[issue30791] tkinter.Tk() adds suffix to window class name when launching multiple instances

2017-06-28 Thread Håkon Hægland
New submission from Håkon Hægland: Hello. In order to group several instances of a given application under one icon in the desktop launcher (I am using Ubuntu 17.04) they must have the same appName property of the WM_CLASS string. For example, if I run emacs twice: $ emacs & $ emacs &am

[issue30503] It should be possible to use a module name with the same name as a package name

2017-05-29 Thread Håkon Hægland
New submission from Håkon Hægland: I have the following folder structure: . ├── aaa │   ├── bbb │   │   ├── ccc.py │   │   └── __init__.py │   ├── bbb.py │   └── __init__.py ├── __init__.py └── t.py ./t.py: import sys sys.path = ['.'] import aaa.bbb print(aaa.bbb.get_name()) ./aaa/bbb.py