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
01d1b9be
Commit
01d1b9be
authored
Sep 26, 2010
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- backported r116951 from trunk
parent
6e6ff681
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
src/OFS/tests/testHistory.py
src/OFS/tests/testHistory.py
+3
-0
No files found.
doc/CHANGES.rst
View file @
01d1b9be
...
...
@@ -11,6 +11,8 @@ http://docs.zope.org/zope2/releases/.
Bugs Fixed
++++++++++
- Fixed unit test that failed on fast Windows machines.
- LP #642728: Fixed TypeError on nested multi part messages in MailHost.
Features Added
...
...
src/OFS/tests/testHistory.py
View file @
01d1b9be
...
...
@@ -5,6 +5,7 @@ Zope2.startup()
import
os
import
shutil
import
time
import
transaction
import
tempfile
import
ZODB
...
...
@@ -35,10 +36,12 @@ class HistoryTests(unittest.TestCase):
t
.
description
=
None
t
.
note
(
'Change 1'
)
t
.
commit
()
time
.
sleep
(
0.02
)
# wait at least one Windows clock tick
ps
.
write
(
'return 2'
)
t
=
transaction
.
get
()
t
.
note
(
'Change 2'
)
t
.
commit
()
time
.
sleep
(
0.02
)
# wait at least one Windows clock tick
ps
.
write
(
'return 3'
)
t
=
transaction
.
get
()
t
.
note
(
'Change 3'
)
...
...
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