changeset 42357:5b795108dd17

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
author Georges Racinet <georges.racinet@octobus.net>
date Tue, 21 May 2019 20:07:20 +0200
parents 48df8a06c8bb
children 45c18f7345c1
files rust/hg-cpython/src/lib.rs
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rust/hg-cpython/src/lib.rs	Thu May 16 21:22:29 2019 +0200
+++ b/rust/hg-cpython/src/lib.rs	Tue May 21 20:07:20 2019 +0200
@@ -23,7 +23,6 @@
 extern crate cpython;
 extern crate hg;
 extern crate libc;
-extern crate python27_sys;
 
 pub mod ancestors;
 mod cindex;