Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d03c7d commit 1c71b2aCopy full SHA for 1c71b2a
2 files changed
Lib/logging/__init__.py
@@ -1174,7 +1174,7 @@ def findCaller(self):
1174
if filename == _srcfile:
1175
f = f.f_back
1176
continue
1177
- rv = (filename, f.f_lineno, co.co_name)
+ rv = (co.co_filename, f.f_lineno, co.co_name)
1178
break
1179
return rv
1180
Misc/NEWS
@@ -92,6 +92,8 @@ Core and Builtins
92
Library
93
-------
94
95
+- Issue #9948: Fixed problem of losing filename case information.
96
+
97
- Issue #9437: Fix building C extensions with non-default LDFLAGS.
98
99
- Issue #4661: email can now parse bytes input and generate either converted
0 commit comments