Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4dc09524
Commit
4dc09524
authored
Sep 06, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing import of the types module in logging.config.
(backport from rev. 51785)
parent
291a1b89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/logging/config.py
Lib/logging/config.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/logging/config.py
View file @
4dc09524
...
@@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved.
...
@@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away!
To use, simply 'import logging' and log away!
"""
"""
import
sys
,
logging
,
logging
.
handlers
,
string
,
socket
,
struct
,
os
,
traceback
import
sys
,
logging
,
logging
.
handlers
,
string
,
socket
,
struct
,
os
,
traceback
,
types
try
:
try
:
import
thread
import
thread
...
...
Misc/NEWS
View file @
4dc09524
...
@@ -46,6 +46,8 @@ Core and builtins
...
@@ -46,6 +46,8 @@ Core and builtins
Library
Library
-------
-------
-
Fix
missing
import
of
the
types
module
in
logging
.
config
.
-
Patch
#
1550886
:
Fix
decimal
module
context
management
implementation
-
Patch
#
1550886
:
Fix
decimal
module
context
management
implementation
to
match
the
localcontext
()
example
from
PEP
343.
to
match
the
localcontext
()
example
from
PEP
343.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment