mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
This commit is contained in:
parent
9e0b363629
commit
597ebab744
10 changed files with 37 additions and 15 deletions
|
|
@ -3,12 +3,16 @@
|
|||
OS/2+EMX doesn't support the file locking operations.
|
||||
|
||||
"""
|
||||
import fcntl
|
||||
import os
|
||||
import struct
|
||||
import sys
|
||||
import unittest
|
||||
from test.test_support import verbose, TESTFN, unlink, run_unittest
|
||||
from test.test_support import (verbose, TESTFN, unlink, run_unittest,
|
||||
import_module)
|
||||
|
||||
# Skip test if no fnctl module.
|
||||
fcntl = import_module('fcntl')
|
||||
|
||||
|
||||
# TODO - Write tests for flock() and lockf().
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue