This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: android lacks some declarations for the posix module
Type: compile error Stage: resolved
Components: Cross-Build Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: skrah Nosy List: Alex.Willmer, python-dev, skrah, xdegaye
Priority: normal Keywords: patch

Created on 2016-04-26 14:24 by xdegaye, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
posixmodule.patch xdegaye, 2016-04-26 14:24 review
posixmodule.patch xdegaye, 2016-04-26 14:32 fixing a comment in previous patch review
Messages (4)
msg264291 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2016-04-26 14:24
'AT_EACCESS' is not declared although HAVE_FACCESSAT is defined
'I_PUSH' is not declared

Patch attached.
The patch does not take into account the fact that this may be fixed in future versions of android.
msg264293 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2016-04-26 14:32
Fixing a comment in previous patch.
msg264300 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-04-26 15:04
New changeset f4c6dab59cd8 by Stefan Krah in branch 'default':
Issue #26863: HAVE_FACCESSAT should (currently) not be defined on Android.
https://hg.python.org/cpython/rev/f4c6dab59cd8
msg264301 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2016-04-26 15:06
Thanks again!
History
Date User Action Args
2022-04-11 14:58:30adminsetgithub: 71050
2016-04-26 16:04:41zach.warelinkissue26865 dependencies
2016-04-26 15:06:13skrahsetstatus: open -> closed

assignee: skrah

nosy: + skrah
messages: + msg264301
resolution: fixed
stage: resolved
2016-04-26 15:04:50python-devsetnosy: + python-dev
messages: + msg264300
2016-04-26 14:32:40xdegayesetfiles: + posixmodule.patch

messages: + msg264293
2016-04-26 14:24:20xdegayecreate