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
561d5aa4
Commit
561d5aa4
authored
Feb 22, 2010
by
Jack Diederich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes issue #1522237, bad init check in _threading_local
parent
dc8c2ada
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
Lib/_threading_local.py
Lib/_threading_local.py
+1
-1
Lib/test/test_threading_local.py
Lib/test/test_threading_local.py
+15
-0
No files found.
Lib/_threading_local.py
View file @
561d5aa4
...
...
@@ -154,7 +154,7 @@ class _localbase(object):
object
.
__setattr__
(
self
,
'_local__args'
,
(
args
,
kw
))
object
.
__setattr__
(
self
,
'_local__lock'
,
RLock
())
if
args
or
kw
and
(
cls
.
__init__
is
object
.
__init__
):
if
(
args
or
kw
)
and
(
cls
.
__init__
is
object
.
__init__
):
raise
TypeError
(
"Initialization arguments are not supported"
)
# We need to create the thread dict in anticipation of
...
...
Lib/test/test_threading_local.py
View file @
561d5aa4
...
...
@@ -106,6 +106,21 @@ class ThreadingLocalTest(unittest.TestCase):
self
.
assertTrue
(
passed
)
def
test_arguments
(
self
):
# Issue 1522237
from
_thread
import
_local
as
local
from
_threading_local
import
local
as
py_local
for
cls
in
(
local
,
py_local
):
class
MyLocal
(
cls
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
pass
MyLocal
(
a
=
1
)
MyLocal
(
1
)
self
.
assertRaises
(
TypeError
,
cls
,
a
=
1
)
self
.
assertRaises
(
TypeError
,
cls
,
1
)
def
test_main
():
suite
=
unittest
.
TestSuite
()
...
...
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