Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
2d6d1556
Commit
2d6d1556
authored
Feb 19, 2020
by
Arnaud Fontaine
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testDynamicClassGeneration: Cosmetics.
parent
f72d4e26
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
product/ERP5Type/tests/testDynamicClassGeneration.py
product/ERP5Type/tests/testDynamicClassGeneration.py
+2
-5
No files found.
product/ERP5Type/tests/testDynamicClassGeneration.py
View file @
2d6d1556
...
...
@@ -2610,7 +2610,6 @@ class DifferentFromReference(Person):
from
types
import
ModuleType
interface_module
=
ModuleType
(
'ITestPortalType'
)
interface_module
.
ITestPortalType
=
ITestPortalType
import
sys
sys
.
modules
[
'ITestPortalType'
]
=
interface_module
self
.
failIfModuleImportable
(
'TestPortalType'
)
...
...
@@ -2743,7 +2742,6 @@ class TestWithImport(TestImported):
from
types
import
ModuleType
interface_module
=
ModuleType
(
'ITestGC'
)
interface_module
.
ITestGC
=
ITestGC
import
sys
sys
.
modules
[
'ITestGC'
]
=
interface_module
self
.
failIfModuleImportable
(
'TestGC'
)
...
...
@@ -2767,6 +2765,8 @@ class TestGC(XMLObject):
import
gc
initial_gc_debug_flags
=
gc
.
get_debug
()
initial_stderr
=
sys
.
stderr
from
cStringIO
import
StringIO
stderr
=
StringIO
()
try
:
gc
.
disable
()
...
...
@@ -2782,8 +2782,6 @@ class TestGC(XMLObject):
gc
.
collect
()
self
.
assertEqual
(
gc
.
garbage
,
[])
import
sys
from
cStringIO
import
StringIO
import
erp5.component
gc
.
set_debug
(
gc
.
DEBUG_STATS
|
...
...
@@ -2791,7 +2789,6 @@ class TestGC(XMLObject):
gc
.
DEBUG_COLLECTABLE
|
gc
.
DEBUG_OBJECTS
|
gc
.
DEBUG_INSTANCES
)
stderr
=
StringIO
()
sys
.
stderr
=
stderr
# Still not garbage collectable as RefManager still keeps a reference
erp5
.
component
.
ref_manager
.
clear
()
...
...
Romain Courteaud
@romain
mentioned in commit
510dab79
·
Mar 09, 2020
mentioned in commit
510dab79
mentioned in commit 510dab7972505e8b0a2b36c2e2ace350f14c05df
Toggle commit list
Romain Courteaud
@romain
mentioned in commit
67acae3c
·
Mar 10, 2020
mentioned in commit
67acae3c
mentioned in commit 67acae3c9b3b8de1e3d1d2693c77ad1988fa5693
Toggle commit list
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