Remove Result and Option reexports

Brief note: This does *not* affect anything in the prelude

Part of #19253

All this does is remove the reexporting of Result and Option from their
respective modules. More core reexports might be removed, but these ones
are the safest to remove since these enums (and their variants) are included in
the prelude.

[breaking-change]
This commit is contained in:
Corey Farwell 2014-12-08 12:58:01 -05:00
parent 84a7615418
commit 9af324a673
4 changed files with 6 additions and 3 deletions

View File

@ -143,7 +143,7 @@
#![stable]
pub use self::Option::*;
use self::Option::*;
use cmp::{Eq, Ord};
use default::Default;

View File

@ -230,7 +230,7 @@
#![stable]
pub use self::Result::*;
use self::Result::*;
use std::fmt::Show;
use slice;

View File

@ -21,9 +21,11 @@
use mem;
use ops::*;
use option::*;
use option::Option::{None, Some};
use os;
use path::{Path,GenericPath};
use result::*;
use result::Result::{Err, Ok};
use slice::{AsSlice,SlicePrelude};
use str;
use string::String;
@ -212,6 +214,7 @@ pub mod dl {
use libc;
use ptr;
use result::*;
use result::Result::{Err, Ok};
use string::String;
pub unsafe fn open_external<T: ToCStr>(filename: T) -> *mut u8 {

View File

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use option::None;
use option::Option::None;
use rustrt::task::Task;
use rustrt::local::Local;