Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
339a3ad8
Commit
339a3ad8
authored
Sep 06, 2007
by
Gregory P. Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backport of r58023 to fix unit test suite issue1112 on windows
parent
c4f5a159
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
9 deletions
+22
-9
Lib/bsddb/test/test_1413192.py
Lib/bsddb/test/test_1413192.py
+22
-9
No files found.
Lib/bsddb/test/test_1413192.py
View file @
339a3ad8
# http://python.org/sf/1413192
# http://bugs.python.org/issue1413192
#
#
This test relies on the variable names, s
ee the bug report for details.
#
S
ee the bug report for details.
# The problem was that the env was deallocated prior to the txn.
import
shutil
...
...
@@ -15,14 +14,28 @@ except ImportError:
env_name
=
tempfile
.
mkdtemp
()
env
=
db
.
DBEnv
()
env
.
open
(
env_name
,
db
.
DB_CREATE
|
db
.
DB_INIT_TXN
|
db
.
DB_INIT_MPOOL
)
the_txn
=
env
.
txn_begin
()
# Wrap test operation in a class so we can control destruction rather than
# waiting for the controlling Python executable to exit
class
Context
:
def
__init__
(
self
):
self
.
env
=
db
.
DBEnv
()
self
.
env
.
open
(
env_name
,
db
.
DB_CREATE
|
db
.
DB_INIT_TXN
|
db
.
DB_INIT_MPOOL
)
self
.
the_txn
=
self
.
env
.
txn_begin
()
self
.
map
=
db
.
DB
(
self
.
env
)
self
.
map
.
open
(
'xxx.db'
,
"p"
,
db
.
DB_HASH
,
db
.
DB_CREATE
,
0666
,
txn
=
self
.
the_txn
)
del
self
.
env
del
self
.
the_txn
map
=
db
.
DB
(
env
)
map
.
open
(
'xxx.db'
,
"p"
,
db
.
DB_HASH
,
db
.
DB_CREATE
,
0666
,
txn
=
the_txn
)
context
=
Context
(
)
del
context
# try not to leave a turd
(won't help Windows since files are still open)
# try not to leave a turd
try
:
shutil
.
rmtree
(
env_name
)
except
EnvironmentError
:
...
...
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