summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2013-02-06 13:11:09 -0800
committerAnas Nashif <anas.nashif@intel.com>2013-02-06 17:32:17 -0800
commitf92a985b9ad52250dcc34c562c8a5a869a55e5a4 (patch)
tree56472498f35c09b014eb4a714560f12a25845228
parenta33807665e103081b3dae898f886bc66eda27b59 (diff)
downloadrpmlint-f92a985b9ad52250dcc34c562c8a5a869a55e5a4.tar.gz
rpmlint-f92a985b9ad52250dcc34c562c8a5a869a55e5a4.tar.bz2
rpmlint-f92a985b9ad52250dcc34c562c8a5a869a55e5a4.zip
python3_magic_number_fix.diff
-rw-r--r--FilesCheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/FilesCheck.py b/FilesCheck.py
index 9251561..40a9dd6 100644
--- a/FilesCheck.py
+++ b/FilesCheck.py
@@ -753,7 +753,7 @@ def peek(filename, pkg, length=1024):
istext = float(len(t))/len(chunk) <= 0.30
return (chunk, istext)
-# See Python/import.c (in the trunk and py3k branches) for a full list of
+# See Python/import.c (in the default and 2.x branches) for a full list of
# the values here.
_python_magic_values = {
'2.2': 60717,
@@ -765,7 +765,7 @@ _python_magic_values = {
'3.0': 3130,
'3.1': 3150,
'3.2': 3180,
- '3.3': 3190,
+ '3.3': 3230,
}
def get_expected_pyc_magic(path):