Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
f228cb7b
Commit
f228cb7b
authored
Feb 21, 2013
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'main/master'
parents
ff220426
b02f373a
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
331 additions
and
63 deletions
+331
-63
CHANGES.rst
CHANGES.rst
+6
-0
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+15
-3
Cython/Utility/Builtins.c
Cython/Utility/Builtins.c
+117
-0
Cython/Utility/Optimize.c
Cython/Utility/Optimize.c
+0
-48
Cython/Utility/StringTools.c
Cython/Utility/StringTools.c
+1
-1
runtests.py
runtests.py
+1
-0
tests/run/iterdict.pyx
tests/run/iterdict.pyx
+34
-11
tests/run/test_dictviews.pyx
tests/run/test_dictviews.pyx
+157
-0
No files found.
CHANGES.rst
View file @
f228cb7b
...
...
@@ -8,6 +8,12 @@ Cython Changelog
Features added
--------------
* The Python2-only dict methods ``.iter*()`` and ``.view*()`` (requires Python 2.7)
are automatically mapped to the equivalent keys/values/items methods in Python 3
for typed dictionaries.
* Unicode slicing is substantially faster.
* list.append() is faster on average.
* ``raise Exception() from None`` suppresses the exception context in Py3.3.
...
...
Cython/Compiler/Builtin.py
View file @
f228cb7b
...
...
@@ -282,11 +282,23 @@ builtin_types_table = [
]),
(
"dict"
,
"PyDict_Type"
,
[
BuiltinMethod
(
"items"
,
"T"
,
"O"
,
"__Pyx_PyDict_Items"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_items"
,
"
Optimize
.c"
)),
utility_code
=
UtilityCode
.
load
(
"py_dict_items"
,
"
Builtins
.c"
)),
BuiltinMethod
(
"keys"
,
"T"
,
"O"
,
"__Pyx_PyDict_Keys"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_keys"
,
"
Optimize
.c"
)),
utility_code
=
UtilityCode
.
load
(
"py_dict_keys"
,
"
Builtins
.c"
)),
BuiltinMethod
(
"values"
,
"T"
,
"O"
,
"__Pyx_PyDict_Values"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_values"
,
"Optimize.c"
)),
utility_code
=
UtilityCode
.
load
(
"py_dict_values"
,
"Builtins.c"
)),
BuiltinMethod
(
"iteritems"
,
"T"
,
"O"
,
"__Pyx_PyDict_IterItems"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_iteritems"
,
"Builtins.c"
)),
BuiltinMethod
(
"iterkeys"
,
"T"
,
"O"
,
"__Pyx_PyDict_IterKeys"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_iterkeys"
,
"Builtins.c"
)),
BuiltinMethod
(
"itervalues"
,
"T"
,
"O"
,
"__Pyx_PyDict_IterValues"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_itervalues"
,
"Builtins.c"
)),
BuiltinMethod
(
"viewitems"
,
"T"
,
"O"
,
"__Pyx_PyDict_ViewItems"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_viewitems"
,
"Builtins.c"
)),
BuiltinMethod
(
"viewkeys"
,
"T"
,
"O"
,
"__Pyx_PyDict_ViewKeys"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_viewkeys"
,
"Builtins.c"
)),
BuiltinMethod
(
"viewvalues"
,
"T"
,
"O"
,
"__Pyx_PyDict_ViewValues"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_viewvalues"
,
"Builtins.c"
)),
BuiltinMethod
(
"clear"
,
"T"
,
"r"
,
"__Pyx_PyDict_Clear"
,
utility_code
=
UtilityCode
.
load
(
"py_dict_clear"
,
"Optimize.c"
)),
BuiltinMethod
(
"copy"
,
"T"
,
"T"
,
"PyDict_Copy"
)]),
...
...
Cython/Utility/Builtins.c
View file @
f228cb7b
...
...
@@ -243,3 +243,120 @@ static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_abs_longlong(PY_LONG_LONG x) {
//////////////////// pow2.proto ////////////////////
#define __Pyx_PyNumber_Power2(a, b) PyNumber_Power(a, b, Py_None)
//////////////////// py_dict_keys.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Keys
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Keys(d) PyDict_Keys(d)
#endif
//////////////////// py_dict_keys ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Keys
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"keys"
),
NULL
);
}
#endif
//////////////////// py_dict_values.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Values
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Values(d) PyDict_Values(d)
#endif
//////////////////// py_dict_values ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Values
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"values"
),
NULL
);
}
#endif
//////////////////// py_dict_items.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Items
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Items(d) PyDict_Items(d)
#endif
//////////////////// py_dict_items ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Items
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"items"
),
NULL
);
}
#endif
//////////////////// py_dict_iterkeys.proto ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterKeys
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_iterkeys ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterKeys
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"keys"
)
:
PYIDENT
(
"iterkeys"
),
NULL
);
}
//////////////////// py_dict_itervalues.proto ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterValues
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_itervalues ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterValues
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"values"
)
:
PYIDENT
(
"itervalues"
),
NULL
);
}
//////////////////// py_dict_iteritems.proto ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterItems
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_iteritems ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_IterItems
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"items"
)
:
PYIDENT
(
"iteritems"
),
NULL
);
}
//////////////////// py_dict_viewkeys.proto ////////////////////
#if PY_VERSION_HEX < 0x02070000
#error This module uses dict views, which require Python 2.7 or later
#endif
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewKeys
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_viewkeys ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewKeys
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"keys"
)
:
PYIDENT
(
"viewkeys"
),
NULL
);
}
//////////////////// py_dict_viewvalues.proto ////////////////////
#if PY_VERSION_HEX < 0x02070000
#error This module uses dict views, which require Python 2.7 or later
#endif
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewValues
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_viewvalues ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewValues
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"values"
)
:
PYIDENT
(
"viewvalues"
),
NULL
);
}
//////////////////// py_dict_viewitems.proto ////////////////////
#if PY_VERSION_HEX < 0x02070000
#error This module uses dict views, which require Python 2.7 or later
#endif
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewItems
(
PyObject
*
d
);
/*proto*/
//////////////////// py_dict_viewitems ////////////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_ViewItems
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
(
PY_MAJOR_VERSION
>=
3
)
?
PYIDENT
(
"items"
)
:
PYIDENT
(
"viewitems"
),
NULL
);
}
Cython/Utility/Optimize.c
View file @
f228cb7b
...
...
@@ -347,54 +347,6 @@ static CYTHON_INLINE PyObject *__Pyx_PyDict_SetDefault(PyObject *d, PyObject *ke
#define __Pyx_PyDict_Clear(d) (PyDict_Clear(d), 0)
//////////////////// py_dict_keys.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Keys
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Keys(d) PyDict_Keys(d)
#endif
//////////////////// py_dict_keys ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Keys
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"keys"
),
NULL
);
}
#endif
//////////////////// py_dict_values.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Values
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Values(d) PyDict_Values(d)
#endif
//////////////////// py_dict_values ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Values
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"values"
),
NULL
);
}
#endif
//////////////////// py_dict_items.proto ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Items
(
PyObject
*
d
);
/*proto*/
#else
#define __Pyx_PyDict_Items(d) PyDict_Items(d)
#endif
//////////////////// py_dict_items ////////////////////
#if PY_MAJOR_VERSION >= 3
static
CYTHON_INLINE
PyObject
*
__Pyx_PyDict_Items
(
PyObject
*
d
)
{
return
PyObject_CallMethodObjArgs
(
d
,
PYIDENT
(
"items"
),
NULL
);
}
#endif
/////////////// dict_iter.proto ///////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_dict_iterator
(
PyObject
*
dict
,
int
is_dict
,
PyObject
*
method_name
,
...
...
Cython/Utility/StringTools.c
View file @
f228cb7b
...
...
@@ -407,6 +407,6 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_Substring(
return
PyUnicode_FromKindAndData
(
PyUnicode_KIND
(
text
),
PyUnicode_1BYTE_DATA
(
text
)
+
start
*
PyUnicode_KIND
(
text
),
stop
-
start
);
#else
PyUnicode_FromUnicode
(
PyUnicode_AS_UNICODE
(
text
)
+
start
,
stop
-
start
);
return
PyUnicode_FromUnicode
(
PyUnicode_AS_UNICODE
(
text
)
+
start
,
stop
-
start
);
#endif
}
runtests.py
View file @
f228cb7b
...
...
@@ -222,6 +222,7 @@ VER_DEP_MODULES = {
]),
(2,7) : (operator.lt, lambda x: x in ['run.withstat_py', # multi context with statement
'run.yield_inside_lambda',
'run.test_dictviews',
]),
# The next line should start (3,); but this is a dictionary, so
# we can only have one (3,) key. Since 2.7 is supposed to be the
...
...
tests/run/iterdict.pyx
View file @
f228cb7b
...
...
@@ -4,6 +4,40 @@ cimport cython
dict_size
=
4
d
=
dict
(
zip
(
range
(
10
,
dict_size
+
10
),
range
(
dict_size
)))
def
dict_iteritems
(
dict
d
):
"""
>>> it = dict_iteritems(d)
>>> type(it) is list
False
>>> sorted(it)
[(10, 0), (11, 1), (12, 2), (13, 3)]
"""
return
d
.
iteritems
()
def
dict_iterkeys
(
dict
d
):
"""
>>> it = dict_iterkeys(d)
>>> type(it) is list
False
>>> sorted(it)
[10, 11, 12, 13]
"""
return
d
.
iterkeys
()
def
dict_itervalues
(
dict
d
):
"""
>>> it = dict_itervalues(d)
>>> type(it) is list
False
>>> sorted(it)
[0, 1, 2, 3]
"""
return
d
.
itervalues
()
@
cython
.
test_fail_if_path_exists
(
"//WhileStatNode"
)
def
items
(
dict
d
):
...
...
@@ -174,17 +208,6 @@ def iterkeys(dict d):
l
.
sort
()
return
l
@
cython
.
test_fail_if_path_exists
(
"//WhileStatNode"
,
"//WhileStatNode//DictIterationNextNode"
)
def
iterkeys_argerror
(
dict
d
):
"""
>>> try: iterkeys_argerror(d)
... except (TypeError, AttributeError): pass
"""
for
k
in
d
.
iterkeys
(
1
):
print
k
@
cython
.
test_assert_path_exists
(
"//WhileStatNode"
,
"//WhileStatNode//DictIterationNextNode"
)
...
...
tests/run/test_dictviews.pyx
0 → 100644
View file @
f228cb7b
import
unittest
class
DictSetTest
(
unittest
.
TestCase
):
def
test_constructors_not_callable
(
self
):
kt
=
type
({}.
viewkeys
())
self
.
assertRaises
(
TypeError
,
kt
,
{})
self
.
assertRaises
(
TypeError
,
kt
)
it
=
type
({}.
viewitems
())
self
.
assertRaises
(
TypeError
,
it
,
{})
self
.
assertRaises
(
TypeError
,
it
)
vt
=
type
({}.
viewvalues
())
self
.
assertRaises
(
TypeError
,
vt
,
{})
self
.
assertRaises
(
TypeError
,
vt
)
def
test_dict_keys
(
self
):
d
=
{
1
:
10
,
"a"
:
"ABC"
}
keys
=
d
.
viewkeys
()
self
.
assertEqual
(
len
(
keys
),
2
)
self
.
assertEqual
(
set
(
keys
),
set
([
1
,
"a"
]))
self
.
assertEqual
(
keys
,
set
([
1
,
"a"
]))
self
.
assertNotEqual
(
keys
,
set
([
1
,
"a"
,
"b"
]))
self
.
assertNotEqual
(
keys
,
set
([
1
,
"b"
]))
self
.
assertNotEqual
(
keys
,
set
([
1
]))
self
.
assertNotEqual
(
keys
,
42
)
self
.
assertIn
(
1
,
keys
)
self
.
assertIn
(
"a"
,
keys
)
self
.
assertNotIn
(
10
,
keys
)
self
.
assertNotIn
(
"Z"
,
keys
)
self
.
assertEqual
(
d
.
viewkeys
(),
d
.
viewkeys
())
e
=
{
1
:
11
,
"a"
:
"def"
}
self
.
assertEqual
(
d
.
viewkeys
(),
e
.
viewkeys
())
del
e
[
"a"
]
self
.
assertNotEqual
(
d
.
viewkeys
(),
e
.
viewkeys
())
def
test_dict_items
(
self
):
d
=
{
1
:
10
,
"a"
:
"ABC"
}
items
=
d
.
viewitems
()
self
.
assertEqual
(
len
(
items
),
2
)
self
.
assertEqual
(
set
(
items
),
set
([(
1
,
10
),
(
"a"
,
"ABC"
)]))
self
.
assertEqual
(
items
,
set
([(
1
,
10
),
(
"a"
,
"ABC"
)]))
self
.
assertNotEqual
(
items
,
set
([(
1
,
10
),
(
"a"
,
"ABC"
),
"junk"
]))
self
.
assertNotEqual
(
items
,
set
([(
1
,
10
),
(
"a"
,
"def"
)]))
self
.
assertNotEqual
(
items
,
set
([(
1
,
10
)]))
self
.
assertNotEqual
(
items
,
42
)
self
.
assertIn
((
1
,
10
),
items
)
self
.
assertIn
((
"a"
,
"ABC"
),
items
)
self
.
assertNotIn
((
1
,
11
),
items
)
self
.
assertNotIn
(
1
,
items
)
self
.
assertNotIn
((),
items
)
self
.
assertNotIn
((
1
,),
items
)
self
.
assertNotIn
((
1
,
2
,
3
),
items
)
self
.
assertEqual
(
d
.
viewitems
(),
d
.
viewitems
())
e
=
dict
(
d
.
copy
())
self
.
assertEqual
(
d
.
viewitems
(),
e
.
viewitems
())
e
[
"a"
]
=
"def"
self
.
assertNotEqual
(
d
.
viewitems
(),
e
.
viewitems
())
def
test_dict_mixed_keys_items
(
self
):
d
=
{(
1
,
1
):
11
,
(
2
,
2
):
22
}
e
=
{
1
:
1
,
2
:
2
}
self
.
assertEqual
(
d
.
viewkeys
(),
e
.
viewitems
())
self
.
assertNotEqual
(
d
.
viewitems
(),
e
.
viewkeys
())
def
test_dict_values
(
self
):
d
=
{
1
:
10
,
"a"
:
"ABC"
}
values
=
d
.
viewvalues
()
self
.
assertEqual
(
set
(
values
),
set
([
10
,
"ABC"
]))
self
.
assertEqual
(
len
(
values
),
2
)
def
test_dict_repr
(
self
):
d
=
{
1
:
10
,
"a"
:
"ABC"
}
self
.
assertTrue
(
isinstance
(
repr
(
d
),
str
))
r
=
repr
(
d
.
viewitems
())
self
.
assertTrue
(
isinstance
(
r
,
str
))
self
.
assertTrue
(
r
==
"dict_items([('a', 'ABC'), (1, 10)])"
or
r
==
"dict_items([(1, 10), ('a', 'ABC')])"
)
r
=
repr
(
d
.
viewkeys
())
self
.
assertTrue
(
isinstance
(
r
,
str
))
self
.
assertTrue
(
r
==
"dict_keys(['a', 1])"
or
r
==
"dict_keys([1, 'a'])"
)
r
=
repr
(
d
.
viewvalues
())
self
.
assertTrue
(
isinstance
(
r
,
str
))
self
.
assertTrue
(
r
==
"dict_values(['ABC', 10])"
or
r
==
"dict_values([10, 'ABC'])"
)
def
test_keys_set_operations
(
self
):
d1
=
{
'a'
:
1
,
'b'
:
2
}
d2
=
{
'b'
:
3
,
'c'
:
2
}
d3
=
{
'd'
:
4
,
'e'
:
5
}
self
.
assertEqual
(
d1
.
viewkeys
()
&
d1
.
viewkeys
(),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
&
d2
.
viewkeys
(),
{
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
&
d3
.
viewkeys
(),
set
())
self
.
assertEqual
(
d1
.
viewkeys
()
&
set
(
d1
.
viewkeys
()),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
&
set
(
d2
.
viewkeys
()),
{
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
&
set
(
d3
.
viewkeys
()),
set
())
self
.
assertEqual
(
d1
.
viewkeys
()
|
d1
.
viewkeys
(),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
|
d2
.
viewkeys
(),
{
'a'
,
'b'
,
'c'
})
self
.
assertEqual
(
d1
.
viewkeys
()
|
d3
.
viewkeys
(),
{
'a'
,
'b'
,
'd'
,
'e'
})
self
.
assertEqual
(
d1
.
viewkeys
()
|
set
(
d1
.
viewkeys
()),
{
'a'
,
'b'
})
self
.
assertEqual
(
d1
.
viewkeys
()
|
set
(
d2
.
viewkeys
()),
{
'a'
,
'b'
,
'c'
})
self
.
assertEqual
(
d1
.
viewkeys
()
|
set
(
d3
.
viewkeys
()),
{
'a'
,
'b'
,
'd'
,
'e'
})
self
.
assertEqual
(
d1
.
viewkeys
()
^
d1
.
viewkeys
(),
set
())
self
.
assertEqual
(
d1
.
viewkeys
()
^
d2
.
viewkeys
(),
{
'a'
,
'c'
})
self
.
assertEqual
(
d1
.
viewkeys
()
^
d3
.
viewkeys
(),
{
'a'
,
'b'
,
'd'
,
'e'
})
self
.
assertEqual
(
d1
.
viewkeys
()
^
set
(
d1
.
viewkeys
()),
set
())
self
.
assertEqual
(
d1
.
viewkeys
()
^
set
(
d2
.
viewkeys
()),
{
'a'
,
'c'
})
self
.
assertEqual
(
d1
.
viewkeys
()
^
set
(
d3
.
viewkeys
()),
{
'a'
,
'b'
,
'd'
,
'e'
})
def
test_items_set_operations
(
self
):
d1
=
{
'a'
:
1
,
'b'
:
2
}
d2
=
{
'a'
:
2
,
'b'
:
2
}
d3
=
{
'd'
:
4
,
'e'
:
5
}
self
.
assertEqual
(
d1
.
viewitems
()
&
d1
.
viewitems
(),
{(
'a'
,
1
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
&
d2
.
viewitems
(),
{(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
&
d3
.
viewitems
(),
set
())
self
.
assertEqual
(
d1
.
viewitems
()
&
set
(
d1
.
viewitems
()),
{(
'a'
,
1
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
&
set
(
d2
.
viewitems
()),
{(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
&
set
(
d3
.
viewitems
()),
set
())
self
.
assertEqual
(
d1
.
viewitems
()
|
d1
.
viewitems
(),
{(
'a'
,
1
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
|
d2
.
viewitems
(),
{(
'a'
,
1
),
(
'a'
,
2
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
|
d3
.
viewitems
(),
{(
'a'
,
1
),
(
'b'
,
2
),
(
'd'
,
4
),
(
'e'
,
5
)})
self
.
assertEqual
(
d1
.
viewitems
()
|
set
(
d1
.
viewitems
()),
{(
'a'
,
1
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
|
set
(
d2
.
viewitems
()),
{(
'a'
,
1
),
(
'a'
,
2
),
(
'b'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
|
set
(
d3
.
viewitems
()),
{(
'a'
,
1
),
(
'b'
,
2
),
(
'd'
,
4
),
(
'e'
,
5
)})
self
.
assertEqual
(
d1
.
viewitems
()
^
d1
.
viewitems
(),
set
())
self
.
assertEqual
(
d1
.
viewitems
()
^
d2
.
viewitems
(),
{(
'a'
,
1
),
(
'a'
,
2
)})
self
.
assertEqual
(
d1
.
viewitems
()
^
d3
.
viewitems
(),
{(
'a'
,
1
),
(
'b'
,
2
),
(
'd'
,
4
),
(
'e'
,
5
)})
def
test_main
():
try
:
from
test
import
test_support
as
support
except
ImportError
:
from
test
import
support
support
.
run_unittest
(
DictSetTest
)
if
__name__
==
"__main__"
:
test_main
()
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