Move std::rt::io to std::io
This commit is contained in:
parent
8b4683d79d
commit
49ee49296b
119 changed files with 347 additions and 336 deletions
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
use std::fmt;
|
||||
use std::local_data;
|
||||
use std::rt::io;
|
||||
use std::io;
|
||||
|
||||
use syntax::ast;
|
||||
use syntax::ast_util;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
// except according to those terms.
|
||||
|
||||
use std::fmt;
|
||||
use std::rt::io;
|
||||
use std::io;
|
||||
|
||||
#[deriving(Clone)]
|
||||
pub struct Layout {
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
use std::fmt;
|
||||
use std::libc;
|
||||
use std::rt::io;
|
||||
use std::io;
|
||||
use std::vec;
|
||||
|
||||
/// A unit struct which has the `fmt::Default` trait implemented. When
|
||||
|
|
|
|||
|
|
@ -39,10 +39,10 @@ use std::comm;
|
|||
use std::fmt;
|
||||
use std::hashmap::{HashMap, HashSet};
|
||||
use std::local_data;
|
||||
use std::rt::io::buffered::BufferedWriter;
|
||||
use std::rt::io;
|
||||
use std::rt::io::fs;
|
||||
use std::rt::io::File;
|
||||
use std::io::buffered::BufferedWriter;
|
||||
use std::io;
|
||||
use std::io::fs;
|
||||
use std::io::File;
|
||||
use std::os;
|
||||
use std::str;
|
||||
use std::task;
|
||||
|
|
|
|||
|
|
@ -26,10 +26,10 @@ extern mod extra;
|
|||
|
||||
use std::cell::Cell;
|
||||
use std::local_data;
|
||||
use std::rt::io;
|
||||
use std::rt::io::File;
|
||||
use std::rt::io::mem::MemWriter;
|
||||
use std::rt::io::Decorator;
|
||||
use std::io;
|
||||
use std::io::File;
|
||||
use std::io::mem::MemWriter;
|
||||
use std::io::Decorator;
|
||||
use std::str;
|
||||
use extra::getopts;
|
||||
use extra::getopts::groups;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue