|
|
|
|
|
by rocqua
1739 days ago
|
|
In Python, if you use ' import x from' now it becomes 'import x, y from'. Can especially make refactoring more work. If you use namespaced imports then the call is going to become very long by having the package name included twice. In C++ you are dealing with needing to drop the enum in a header file, requiring a two file change and making headers bigger.
The call-side has the same potential namespace problem, but less badly. |
|