Skip to content

Commit d1dfaf3

Browse files
committed
-
1 parent def0485 commit d1dfaf3

File tree

3 files changed

+4
-211
lines changed

3 files changed

+4
-211
lines changed

docs/ref/garlicsim_wx_general_misc/cute_window.txt

Lines changed: 0 additions & 190 deletions
This file was deleted.

docs/ref/garlicsim_wx_general_misc/index.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

python_toolbox/address_tools/object_to_string.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,13 @@ def my_filter(key, value):
208208

209209
# Split to address parts:
210210
address_parts = address.split('.')
211-
# e.g., `['garlicsim', 'misc', 'step_copy', 'StepCopy']`.
211+
# e.g., `['python_toolbox', 'misc', 'step_copy', 'StepCopy']`.
212212

213213
heads = ['.'.join(address_parts[:i]) for i in
214214
xrange(1, len(address_parts) + 1)]
215-
# `heads` is something like: `['garlicsim', 'garlicsim.misc',
216-
# 'garlicsim.misc.step_copy', 'garlicsim.misc.step_copy.StepCopy']`
215+
# `heads` is something like: `['python_toolbox',
216+
# 'python_toolbox.caching', 'python_toolbox.caching.cached_type',
217+
# 'python_toolbox.cached_type.CachedType']`
217218

218219

219220
for head in reversed(heads):

0 commit comments

Comments
 (0)