You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/matplotlib/backends/backend_gtk3.py
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -23,13 +23,18 @@
23
23
# see http://groups.google.com/groups?q=screen+dpi+x11&hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=off&selm=7077.26e81ad5%40swift.cs.tcd.ie&rnum=5 for some info about screen dpi
"Python is not installed as a framework. The Mac OS X backend will "
3030
3030
"not be able to function correctly if Python is not installed as a "
3031
3031
"framework. See the Python documentation for more information on "
3032
3032
"installing Python as a framework on Mac OS X. Please either reinstall "
3033
3033
"Python as a framework, or try one of the other backends. If you are "
3034
-
"using (Ana)Conda please install python.app and replace the use of 'python' "
3035
-
"with 'pythonw'. See 'Working with Matplotlib on OSX' "
3036
-
"in the Matplotlib FAQ for more information.");
3034
+
"using (Ana)Conda please install python.app and replace the use of "
3035
+
"'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the"
3036
+
"Matplotlib FAQ for more information.");
3037
3037
returnfalse;
3038
3038
}
3039
3039
3040
3040
staticstruct PyMethodDef methods[] = {
3041
3041
{"show",
3042
3042
(PyCFunction)show,
3043
3043
METH_NOARGS,
3044
-
"Show all the figures and enter the main loop.\nThis function does not return until all Matplotlib windows are closed,\nand is normally not needed in interactive sessions."
3044
+
"Show all the figures and enter the main loop.\n"
3045
+
"\n"
3046
+
"This function does not return until all Matplotlib windows are closed,\n"
3047
+
"and is normally not needed in interactive sessions."
0 commit comments