[Add stub entry for logging._srcfile] (#3840)

- While this appears to be private, it's also documented as available
  to set here: https://docs.python.org/3/howto/logging.html#optimization
  - Did *not* update `logging.logThreads` et al to match the
  documentation as it may be more appropriate to update the
  documentation to set to `False` rather than to `0` based on how these
  are used

Type further narrowed based on known type of a parameter to
`os.normcase`
This commit is contained in:
Michael H
2020-05-27 22:42:33 -04:00
committed by GitHub
parent fd203e663e
commit a1c6566abe

View File

@@ -29,6 +29,7 @@ raiseExceptions: bool
logThreads: bool
logMultiprocessing: bool
logProcesses: bool
_srcfile: Optional[str]
def currentframe() -> FrameType: ...