diff options
| author | Changqing Li <changqing.li@windriver.com> | 2020-03-04 16:22:40 +0800 |
|---|---|---|
| committer | Changqing Li <changqing.li@windriver.com> | 2020-03-04 16:22:40 +0800 |
| commit | 583901a074dc65145d3d6136ba7dcd02634d680b (patch) | |
| tree | 6cff7c4fc61452c597352dcfe210ea79c6c57163 /numpy/random/_examples | |
| parent | 6894bbc6d396b87464cbc21516d239d5f94f13b7 (diff) | |
| download | numpy-583901a074dc65145d3d6136ba7dcd02634d680b.tar.gz | |
convert shebang from python to python3 (#15687)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Diffstat (limited to 'numpy/random/_examples')
| -rw-r--r-- | numpy/random/_examples/cython/extending.pyx | 2 | ||||
| -rw-r--r-- | numpy/random/_examples/cython/extending_distributions.pyx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/_examples/cython/extending.pyx b/numpy/random/_examples/cython/extending.pyx index 7a0dfe078..3a7f81aa0 100644 --- a/numpy/random/_examples/cython/extending.pyx +++ b/numpy/random/_examples/cython/extending.pyx @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 #cython: language_level=3 from libc.stdint cimport uint32_t diff --git a/numpy/random/_examples/cython/extending_distributions.pyx b/numpy/random/_examples/cython/extending_distributions.pyx index 1bef506ef..4da6a4b3a 100644 --- a/numpy/random/_examples/cython/extending_distributions.pyx +++ b/numpy/random/_examples/cython/extending_distributions.pyx @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 #cython: language_level=3 """ This file shows how the to use a BitGenerator to create a distribution. |
