Move static code outside of unciode.py.

This commit is contained in:
Clar Charr 2017-12-31 02:08:15 -05:00
parent b65f0bedd2
commit b4b3ddd59e
6 changed files with 143 additions and 225 deletions

View file

@ -47,7 +47,9 @@ pub use core::char::CharTryFromError;
#[unstable(feature = "decode_utf8", issue = "33906")]
pub use core::char::{DecodeUtf8, decode_utf8};
#[unstable(feature = "unicode", issue = "27783")]
pub use tables::{UnicodeVersion, UNICODE_VERSION};
pub use tables::{UNICODE_VERSION};
#[unstable(feature = "unicode", issue = "27783")]
pub use version::UnicodeVersion;
/// Returns an iterator that yields the lowercase equivalent of a `char`.
///