Commit 5e8349e5 authored by Vinay Sajip's avatar Vinay Sajip

Issue #9948: logging: fixed problem of losing filename case information.

parent 739a59cf
...@@ -1211,7 +1211,7 @@ class Logger(Filterer): ...@@ -1211,7 +1211,7 @@ class Logger(Filterer):
if filename == _srcfile: if filename == _srcfile:
f = f.f_back f = f.f_back
continue continue
rv = (filename, f.f_lineno, co.co_name) rv = (co.co_filename, f.f_lineno, co.co_name)
break break
return rv return rv
......
...@@ -48,6 +48,8 @@ Core and Builtins ...@@ -48,6 +48,8 @@ Core and Builtins
Library Library
------- -------
- Issue #9948: Fixed problem of losing filename case information.
- Issue #9437: Fix building C extensions with non-default LDFLAGS. - Issue #9437: Fix building C extensions with non-default LDFLAGS.
- Issue #9759: GzipFile now raises ValueError when an operation is attempted - Issue #9759: GzipFile now raises ValueError when an operation is attempted
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment