diff options
author | Georg Brandl <georg@python.org> | 2020-09-08 20:20:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 20:20:19 +0200 |
commit | 9f5672672bd61f7149d2a165b49f0617a1a9fe8e (patch) | |
tree | ad3d62c5c167c6a75edf67a88c20341c77566c7e /pygments/styles/arduino.py | |
parent | d9a9e9ee40eb9815ecc3d9ec9d6f5e57499009d2 (diff) | |
download | pygments-git-9f5672672bd61f7149d2a165b49f0617a1a9fe8e.tar.gz |
all: remove "u" string prefix (#1536)
* all: remove "u" string prefix
* util: remove unirange
Since Python 3.3, all builds are wide unicode compatible.
* unistring: remove support for narrow-unicode builds
which stopped being relevant with Python 3.3
Diffstat (limited to 'pygments/styles/arduino.py')
-rw-r--r-- | pygments/styles/arduino.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/styles/arduino.py b/pygments/styles/arduino.py index c734642f..3630ffc2 100644 --- a/pygments/styles/arduino.py +++ b/pygments/styles/arduino.py @@ -15,7 +15,7 @@ from pygments.token import Keyword, Name, Comment, String, Error, \ class ArduinoStyle(Style): - u""" + """ The Arduino® language style. This style is designed to highlight the Arduino source code, so exepect the best results with it. """ |