Skip to content

Commit

Permalink
Move marshal module from ffi3 to ffi.
Browse files Browse the repository at this point in the history
  • Loading branch information
de-vri-es committed Apr 24, 2019
1 parent f14760a commit 931b3b7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions src/ffi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
pub use crate::ffi3::*;

pub use self::datetime::*;
pub use self::marshal::*;

pub(crate) mod datetime;
pub(crate) mod marshal;
2 changes: 0 additions & 2 deletions src/ffi3/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ mod pystrtod; // TODO supports PEP-384 only; needs adjustment for Python 3.3 and
// Additional headers that are not exported by Python.h
pub mod structmember; // TODO supports PEP-384 only; needs adjustment for Python 3.3 and 3.5

pub mod marshal;

#[cfg(not(Py_LIMITED_API))]
pub mod frameobject;
#[cfg(Py_LIMITED_API)]
Expand Down

0 comments on commit 931b3b7

Please sign in to comment.