-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Dflt autodateformat #5698
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
Dflt autodateformat #5698
Conversation
- Use ISO complient formats by default - aded extra level of scale (seconds) - add rcparams for all of these strings closes matplotlib#4808 closes matplotlib#4809 closes matplotlib#5086
don't merge, this still needs to have comments from #5445 addressed. |
aede86f
to
3a5b577
Compare
Switch to using `string.Template` instead of `%` formatting to generate default matplotlibrc file. This is to avoid having to escape any old or new style format strings that we want to put into the default matplotlibrc file.
I think I have addressed all of @mdboom and @WeatherGod 's comments in #5445. This can either be merged as-is or folding into #5774 |
@@ -4,7 +4,7 @@ | |||
""" | |||
|
|||
from __future__ import print_function, absolute_import | |||
|
|||
from string import Template |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Weird that I've never used this, but it seems like the right tool for the job...
Merged this. I'll |
No description provided.