Home
last modified time | relevance | path

Searched refs:maxBytes (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
Dhandlers.py90 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0): argument
116 if maxBytes > 0:
119 self.maxBytes = maxBytes
155 if self.maxBytes > 0: # are we rolling over?
158 if self.stream.tell() + len(msg) >= self.maxBytes: