-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partial #6153 #4463 : reduce ipython_genutils usage #6214
base: 6.4.x
Are you sure you want to change the base?
Conversation
`u` prefix was used in python 2, before all strings became unicode
* remove stdlib code can be used directly or helper redundant: * str is already unicode * type casting is done in external lib * import aliases * remove unused imports
(macos, 3.6) CI is configured incorrectly (CI issue) |
In case of python 3.6 kill it's possible wider migration with less copy-paste |
@kevin-bates Can I drop python 3.6 support and use more Ipython shared code? |
I think dropping 3.6 is the right approach. Not sure what you mean by using "more ipython shared code" however. I thought this exercise was about removing ipython dependencies. Can you please provide examples of such shared code? |
Main final goal is dropping |
I agree. You had used "ipython" in a previous response when we should try to replace with native python functions and why I needed some clarification. Thank you.
Yes, I realized that as well last night. |
* str is already unicode
* type casting is done in external lib
* import aliases
u
prefix for stringsLogger.warn