summaryrefslogtreecommitdiffstatshomepage
path: root/py/makeqstrdefs.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/makeqstrdefs.py')
-rw-r--r--py/makeqstrdefs.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/py/makeqstrdefs.py b/py/makeqstrdefs.py
index 457bdeef65..209e7a132d 100644
--- a/py/makeqstrdefs.py
+++ b/py/makeqstrdefs.py
@@ -12,10 +12,6 @@ import sys
import io
import os
-# Blacklist of qstrings that are specially handled in further
-# processing and should be ignored
-QSTRING_BLACK_LIST = set(['NULL', 'number_of'])
-
def write_out(fname, output):
if output:
@@ -46,8 +42,7 @@ def process_file(f):
continue
for match in re_qstr.findall(line):
name = match.replace('MP_QSTR_', '')
- if name not in QSTRING_BLACK_LIST:
- output.append('Q(' + name + ')')
+ output.append('Q(' + name + ')')
write_out(last_fname, output)
return ""