From b6413bdd357861fae7e98705d4c0162b977e72f7 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Tue, 26 Feb 2019 14:19:39 +0100 Subject: [PATCH] Remove mention of "enabling fontconfig support". (There is no such "enabling" anymore.) --- lib/matplotlib/font_manager.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/matplotlib/font_manager.py b/lib/matplotlib/font_manager.py index 919da37bc4f5..f8626a0c4cea 100644 --- a/lib/matplotlib/font_manager.py +++ b/lib/matplotlib/font_manager.py @@ -602,8 +602,8 @@ class FontProperties(object): on the font manager's default font size. This class will also accept a fontconfig_ pattern_, if it is the only - argument provided. This support does not require fontconfig to be - installed. We are merely borrowing its pattern syntax for use here. + argument provided. This support does not depend on fontconfig; we are + merely borrowing its pattern syntax for use here. .. _fontconfig: https://www.freedesktop.org/wiki/Software/fontconfig/ .. _pattern: @@ -733,8 +733,7 @@ def get_fontconfig_pattern(self): Get a fontconfig_ pattern_ suitable for looking up the font as specified with fontconfig's ``fc-match`` utility. - This support does not require fontconfig to be installed or - support for it to be enabled. We are merely borrowing its + This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here. """ return generate_fontconfig_pattern(self) @@ -843,8 +842,7 @@ def set_fontconfig_pattern(self, pattern): """ Set the properties by parsing a fontconfig_ *pattern*. - This support does not require fontconfig to be installed or - support for it to be enabled. We are merely borrowing its + This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here. """ for key, val in self._parse_fontconfig_pattern(pattern).items():