mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Closes issue #24773: Implement PEP 495 (Local Time Disambiguation).
This commit is contained in:
parent
638e622055
commit
5d0c598382
7 changed files with 1601 additions and 227 deletions
|
|
@ -112,6 +112,8 @@ resources to test. Currently only the following are defined:
|
|||
|
||||
gui - Run tests that require a running GUI.
|
||||
|
||||
tzdata - Run tests that require timezone data.
|
||||
|
||||
To enable all resources except one, use '-uall,-<resource>'. For
|
||||
example, to run all the tests except for the gui tests, give the
|
||||
option '-uall,-gui'.
|
||||
|
|
@ -119,7 +121,7 @@ option '-uall,-gui'.
|
|||
|
||||
|
||||
RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network',
|
||||
'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui')
|
||||
'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui', 'tzdata')
|
||||
|
||||
class _ArgParser(argparse.ArgumentParser):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue