summaryrefslogtreecommitdiff
path: root/tools/commitstats.py
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2020-12-28 11:00:03 -0700
committerTyler Reddy <tyler.je.reddy@gmail.com>2020-12-28 11:00:03 -0700
commite63001a5701da3c3c1ac29c9e4bbe225f062a653 (patch)
tree8ad8ab2607a05f121998836d1c529cb5c974c3ff /tools/commitstats.py
parenteb66994093be5b57324580cf389b0ec1b41e9e1f (diff)
downloadnumpy-e63001a5701da3c3c1ac29c9e4bbe225f062a653.tar.gz
MAINT: regex char class improve
* replace superfluous single-character regex character classes with their literal string equivalents; this avoids the overhead associated with a character class when there's only a single character enclosed (so there's no benefit to the class overhead) * for more information see: Chapter 6 of: Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed., O’Reilly Media, 2009.
Diffstat (limited to 'tools/commitstats.py')
-rw-r--r--tools/commitstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/commitstats.py b/tools/commitstats.py
index 14c37d4d2..534f0a1b8 100644
--- a/tools/commitstats.py
+++ b/tools/commitstats.py
@@ -4,7 +4,7 @@ import re
import numpy as np
import os
-names = re.compile(r'r\d+\s[|]\s(.*)\s[|]\s200')
+names = re.compile(r'r\d+\s\|\s(.*)\s\|\s200')
def get_count(filename, repo):
mystr = open(filename).read()