Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
baaa2406
Commit
baaa2406
authored
Feb 29, 2016
by
Tres Seaver
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rdikeshwar-2.13' into 2.13
parents
5ed84400
d5586090
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
doc/CHANGES.rst
doc/CHANGES.rst
+3
-0
src/App/ApplicationManager.py
src/App/ApplicationManager.py
+4
-0
No files found.
doc/CHANGES.rst
View file @
baaa2406
...
@@ -8,6 +8,9 @@ http://docs.zope.org/zope2/
...
@@ -8,6 +8,9 @@ http://docs.zope.org/zope2/
2.13.24 (unreleased)
2.13.24 (unreleased)
--------------------
--------------------
- PR #51: Harden debug control panel's module-crawling against trickery
performed by ``six``.
- Issue #34: Fix ``NameError`` exception for ``WindowsError`` which could
- Issue #34: Fix ``NameError`` exception for ``WindowsError`` which could
happen on non-windows systems.
happen on non-windows systems.
...
...
src/App/ApplicationManager.py
View file @
baaa2406
...
@@ -163,6 +163,10 @@ class DebugManager(Item, Implicit):
...
@@ -163,6 +163,10 @@ class DebugManager(Item, Implicit):
# return class reference info
# return class reference info
counts
=
{}
counts
=
{}
for
m
in
sys
.
modules
.
values
():
for
m
in
sys
.
modules
.
values
():
if
m
is
None
:
continue
if
m
.
__name__
.
startswith
(
'six'
):
continue
for
sym
in
dir
(
m
):
for
sym
in
dir
(
m
):
ob
=
getattr
(
m
,
sym
)
ob
=
getattr
(
m
,
sym
)
if
type
(
ob
)
in
t
:
if
type
(
ob
)
in
t
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment