# HG changeset patch # User Georges Racinet # Date 2019-05-21 18:07:20 # Node ID 5b795108dd17fe0cf2ccc40b0537050dbde69bfb # Parent 48df8a06c8bbcd9eba42543a92ddbb987bb0b3fd rust-python3: useless python2 specific import This python27_sys import prevents building with python3, it had been previously removed in a5fa9140ce4c, but that has been since pruned Differential Revision: https://phab.mercurial-scm.org/D6415 diff --git a/rust/hg-cpython/src/lib.rs b/rust/hg-cpython/src/lib.rs --- a/rust/hg-cpython/src/lib.rs +++ b/rust/hg-cpython/src/lib.rs @@ -23,7 +23,6 @@ extern crate cpython; extern crate hg; extern crate libc; -extern crate python27_sys; pub mod ancestors; mod cindex;