mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)
* Fix _sitebuiltins * Fix test_inspect * Fix test_interpreters * Fix test_io * Fix test_iter * Fix test_json * Fix test_linecache * Fix test_lltrace * Fix test_logging * Fix logging
This commit is contained in:
parent
f84d5a1136
commit
fb78692f2a
11 changed files with 73 additions and 63 deletions
|
@ -23,7 +23,7 @@ Copyright (C) 2001-2016 Vinay Sajip. All Rights Reserved.
|
|||
To use, simply 'import logging.handlers' and log away!
|
||||
"""
|
||||
|
||||
import logging, socket, os, pickle, struct, time, re
|
||||
import io, logging, socket, os, pickle, struct, time, re
|
||||
from stat import ST_DEV, ST_INO, ST_MTIME
|
||||
import queue
|
||||
import threading
|
||||
|
@ -150,6 +150,8 @@ class RotatingFileHandler(BaseRotatingHandler):
|
|||
# on each run.
|
||||
if maxBytes > 0:
|
||||
mode = 'a'
|
||||
if "b" not in mode:
|
||||
encoding = io.text_encoding(encoding)
|
||||
BaseRotatingHandler.__init__(self, filename, mode, encoding=encoding,
|
||||
delay=delay, errors=errors)
|
||||
self.maxBytes = maxBytes
|
||||
|
@ -205,6 +207,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
|
|||
def __init__(self, filename, when='h', interval=1, backupCount=0,
|
||||
encoding=None, delay=False, utc=False, atTime=None,
|
||||
errors=None):
|
||||
encoding = io.text_encoding(encoding)
|
||||
BaseRotatingHandler.__init__(self, filename, 'a', encoding=encoding,
|
||||
delay=delay, errors=errors)
|
||||
self.when = when.upper()
|
||||
|
@ -442,6 +445,8 @@ class WatchedFileHandler(logging.FileHandler):
|
|||
"""
|
||||
def __init__(self, filename, mode='a', encoding=None, delay=False,
|
||||
errors=None):
|
||||
if "b" not in mode:
|
||||
encoding = io.text_encoding(encoding)
|
||||
logging.FileHandler.__init__(self, filename, mode=mode,
|
||||
encoding=encoding, delay=delay,
|
||||
errors=errors)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue