rust-python3: useless python2 specific import
authorGeorges Racinet <georges.racinet@octobus.net>
Tue, 21 May 2019 20:07:20 +0200
changeset 42379 5b795108dd17
parent 42378 48df8a06c8bb
child 42380 45c18f7345c1
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
rust/hg-cpython/src/lib.rs
--- 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;