Staging
v0.5.1
https://github.com/python/cpython
Revision 4454057269b995341b04d13f0bf97f96080f27d0 authored by Batuhan Taşkaya on 22 April 2020, 16:09:03 UTC, committed by GitHub on 22 April 2020, 16:09:03 UTC
The constant values of future flags in the __future__ module
is updated in order to prevent collision with compiler flags.
Previously PyCF_ALLOW_TOP_LEVEL_AWAIT was clashing
with CO_FUTURE_DIVISION.
1 parent 9b49893
Raw File
Tip revision: 4454057269b995341b04d13f0bf97f96080f27d0 authored by Batuhan Taşkaya on 22 April 2020, 16:09:03 UTC
bpo-39562: Prevent collision of future and compiler flags (GH-19230)
Tip revision: 4454057
posix-deps-apt.sh
#!/bin/sh
apt-get update

apt-get -yq install \
    build-essential \
    zlib1g-dev \
    libbz2-dev \
    liblzma-dev \
    libncurses5-dev \
    libreadline6-dev \
    libsqlite3-dev \
    libssl-dev \
    libgdbm-dev \
    tk-dev \
    lzma \
    lzma-dev \
    liblzma-dev \
    libffi-dev \
    uuid-dev \
    xvfb

if [ ! -z "$1" ]
then
  echo ##vso[task.prependpath]$PWD/multissl/openssl/$1
  echo ##vso[task.setvariable variable=OPENSSL_DIR]$PWD/multissl/openssl/$1
  python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $1 --system Linux
fi
back to top