anoy 0.2.0__tar.gz → 0.2.1a1__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.
- {anoy-0.2.0/src/anoy.egg-info → anoy-0.2.1a1}/PKG-INFO +1 -1
- {anoy-0.2.0 → anoy-0.2.1a1}/pyproject.toml +1 -1
- {anoy-0.2.0 → anoy-0.2.1a1/src/anoy.egg-info}/PKG-INFO +1 -1
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoyModule/dictTraversal.py +1 -1
- {anoy-0.2.0 → anoy-0.2.1a1}/src/cli.py +1 -1
- {anoy-0.2.0 → anoy-0.2.1a1}/LICENSE.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/README.md +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/setup.cfg +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoy.egg-info/SOURCES.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoy.egg-info/dependency_links.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoy.egg-info/entry_points.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoy.egg-info/requires.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoy.egg-info/top_level.txt +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoyModule/__init__.py +0 -0
- {anoy-0.2.0 → anoy-0.2.1a1}/src/anoyModule/anoyErrors.py +0 -0
|
@@ -345,7 +345,7 @@ class DictTraversal():
|
|
|
345
345
|
if(confChild is None): #Noneの処理方法は不明。
|
|
346
346
|
# nestになるlistとdictだけ対処する。
|
|
347
347
|
if(type(childValue)==list):
|
|
348
|
-
for i in len(childValue):
|
|
348
|
+
for i in range(len(childValue)):
|
|
349
349
|
element=childValue[i]
|
|
350
350
|
newPath=self._curPath+[i]
|
|
351
351
|
self._visitQueue.append((i,element))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|