mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
Backport 58539: squelch the warning that this test is intended to raise.
This commit is contained in:
parent
0dcc3cc949
commit
dd4b025ad8
1 changed files with 7 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
import tempfile
|
||||||
|
import warnings
|
||||||
try:
|
try:
|
||||||
# For Pythons w/distutils and add-on pybsddb
|
# For Pythons w/distutils and add-on pybsddb
|
||||||
from bsddb3 import db
|
from bsddb3 import db
|
||||||
|
@ -32,8 +33,12 @@ class Context:
|
||||||
del self.the_txn
|
del self.the_txn
|
||||||
|
|
||||||
|
|
||||||
context = Context()
|
warnings.filterwarnings('ignore', 'DBTxn aborted in destructor')
|
||||||
del context
|
try:
|
||||||
|
context = Context()
|
||||||
|
del context
|
||||||
|
finally:
|
||||||
|
warnings.resetwarnings()
|
||||||
|
|
||||||
# try not to leave a turd
|
# try not to leave a turd
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue