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
b2317a4d
Commit
b2317a4d
authored
Sep 13, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Plain Diff
Issue #15819: Merge include search from 3.5 into 3.6
parents
ed9c0706
13419263
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
Doc/library/stdtypes.rst
Doc/library/stdtypes.rst
+6
-6
Makefile.pre.in
Makefile.pre.in
+1
-1
Misc/NEWS
Misc/NEWS
+6
-0
No files found.
Doc/library/stdtypes.rst
View file @
b2317a4d
...
...
@@ -3875,17 +3875,17 @@ The constructors for both classes work the same:
Test whether the set is a proper superset of *other*, that is, ``set >=
other and set != other``.
.. method:: union(
other, ...
)
.. method:: union(
*others
)
set | other | ...
Return a new set with elements from the set and all others.
.. method:: intersection(
other, ...
)
.. method:: intersection(
*others
)
set & other & ...
Return a new set with elements common to the set and all others.
.. method:: difference(
other, ...
)
.. method:: difference(
*others
)
set - other - ...
Return a new set with elements in the set that are not in the others.
...
...
@@ -3935,17 +3935,17 @@ The constructors for both classes work the same:
The following table lists operations available for :class:`set` that do not
apply to immutable instances of :class:`frozenset`:
.. method:: update(
other, ...
)
.. method:: update(
*others
)
set |= other | ...
Update the set, adding elements from all others.
.. method:: intersection_update(
other, ...
)
.. method:: intersection_update(
*others
)
set &= other & ...
Update the set, keeping only elements found in it and all others.
.. method:: difference_update(
other, ...
)
.. method:: difference_update(
*others
)
set -= other | ...
Update the set, removing elements found in others.
...
...
Makefile.pre.in
View file @
b2317a4d
...
...
@@ -94,7 +94,7 @@ PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST)
# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
# be able to build extension modules using the directories specified in the
# environment variables
PY_CPPFLAGS
=
$(BASECPPFLAGS)
-I
.
-I
Include
-I
$(srcdir)
/Include
$(CONFIGURE_CPPFLAGS)
$(CPPFLAGS)
PY_CPPFLAGS
=
$(BASECPPFLAGS)
-I
.
-I
$(srcdir)
/Include
$(CONFIGURE_CPPFLAGS)
$(CPPFLAGS)
PY_LDFLAGS
=
$(CONFIGURE_LDFLAGS)
$(LDFLAGS)
NO_AS_NEEDED
=
@NO_AS_NEEDED@
LDLAST
=
@LDLAST@
...
...
Misc/NEWS
View file @
b2317a4d
...
...
@@ -13,6 +13,12 @@ Core and Builtins
Library
-------
Build
-----
- Issue #15819: Remove redundant include search directory option for building
outside the source tree.
What'
s
New
in
Python
3.6.0
beta
1
=================================
...
...
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