python3-openEuler 0.0.5__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of python3-openEuler might be problematic. Click here for more details.
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/PKG-INFO +1 -1
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/openEuler/openEuler.py +4 -1
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/PKG-INFO +1 -1
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/setup.py +1 -1
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/LICENSE +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/README.md +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/openEuler/__init__.py +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/SOURCES.txt +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/dependency_links.txt +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/requires.txt +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/top_level.txt +0 -0
- {python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/setup.cfg +0 -0
|
@@ -162,7 +162,10 @@ class OpenEuler():
|
|
|
162
162
|
while current_value != prev_value:
|
|
163
163
|
prev_value = current_value
|
|
164
164
|
for pattern, replacement in patterns:
|
|
165
|
-
|
|
165
|
+
try:
|
|
166
|
+
current_value = pattern.sub(replacement, current_value)
|
|
167
|
+
except Exception as e:
|
|
168
|
+
continue
|
|
166
169
|
return current_value
|
|
167
170
|
|
|
168
171
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_openeuler-0.0.5 → python3_openeuler-0.0.6}/python3_openEuler.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|