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
b7eec94c
Commit
b7eec94c
authored
Apr 08, 2019
by
Michael Felt
Committed by
Inada Naoki
Apr 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658)
parent
6463ba30
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/test/test_fcntl.py
Lib/test/test_fcntl.py
+1
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS.d/next/Build/2019-04-02-09-25-23.bpo-36503.0xzfkQ.rst
...EWS.d/next/Build/2019-04-02-09-25-23.bpo-36503.0xzfkQ.rst
+2
-0
setup.py
setup.py
+0
-3
No files found.
Lib/test/test_fcntl.py
View file @
b7eec94c
...
...
@@ -34,7 +34,7 @@ def get_lockdata():
fcntl
.
F_WRLCK
,
0
)
elif
sys
.
platform
.
startswith
(
'gnukfreebsd'
):
lockdata
=
struct
.
pack
(
'qqihhi'
,
0
,
0
,
0
,
fcntl
.
F_WRLCK
,
0
,
0
)
elif
sys
.
platform
in
[
'
aix3'
,
'aix4'
,
'
hp-uxB'
,
'unixware7'
]:
elif
sys
.
platform
in
[
'hp-uxB'
,
'unixware7'
]:
lockdata
=
struct
.
pack
(
'hhlllii'
,
fcntl
.
F_WRLCK
,
0
,
0
,
0
,
0
,
0
,
0
)
else
:
lockdata
=
struct
.
pack
(
'hh'
+
start_len
+
'hh'
,
fcntl
.
F_WRLCK
,
0
,
0
,
0
,
0
,
0
)
...
...
Misc/ACKS
View file @
b7eec94c
...
...
@@ -476,6 +476,7 @@ Jim Fasarakis-Hilliard
Mark Favas
Sergey Fedoseev
Boris Feld
M. Felt
Thomas Fenzl
Niels Ferguson
Francisco Fernández Castaño
...
...
Misc/NEWS.d/next/Build/2019-04-02-09-25-23.bpo-36503.0xzfkQ.rst
0 → 100644
View file @
b7eec94c
Remove references to "aix3" and "aix4".
Patch by M. Felt.
setup.py
View file @
b7eec94c
...
...
@@ -1882,9 +1882,6 @@ class PyBuildExt(build_ext):
libs
.
append
(
'tk'
+
version
)
libs
.
append
(
'tcl'
+
version
)
if
HOST_PLATFORM
in
[
'aix3'
,
'aix4'
]:
libs
.
append
(
'ld'
)
# Finally, link with the X11 libraries (not appropriate on cygwin)
if
not
CYGWIN
:
libs
.
append
(
'X11'
)
...
...
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