Skip to content

Commit 80f8a2f

Browse files
committed
---
yaml --- r: 30170 b: refs/heads/incoming c: 6d22a80 h: refs/heads/master v: v3
1 parent 36bd6d3 commit 80f8a2f

File tree

6 files changed

+481
-986
lines changed

6 files changed

+481
-986
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: cb8ecd79849160d8cff2eff8b070efd7f9a3b9a7
9+
refs/heads/incoming: 6d22a805d73c6b6f42e496fc23cffbf6ffeeed1b
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libcore/core.rc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export send_map;
5454
export hash;
5555
export cmp;
5656
export num;
57-
export path, path2;
57+
export path;
5858
export managed;
5959
export flate;
6060

@@ -254,7 +254,6 @@ mod libc;
254254
mod os;
255255
#[warn(non_camel_case_types)]
256256
mod path;
257-
mod path2;
258257
#[warn(non_camel_case_types)]
259258
mod rand;
260259
#[warn(non_camel_case_types)]

branches/incoming/src/libcore/core.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import option = option::Option;
1010

1111
import result::{Result, Ok, Err};
1212

13-
import Path = path2::Path;
14-
import GenericPath = path2::GenericPath;
15-
import WindowsPath = path2::WindowsPath;
16-
import PosixPath = path2::PosixPath;
13+
import Path = path::Path;
14+
import GenericPath = path::GenericPath;
15+
import WindowsPath = path::WindowsPath;
16+
import PosixPath = path::PosixPath;
1717

1818
import tuple::{TupleOps, ExtendedTupleOps};
1919
import str::{StrSlice, UniqueStr};

branches/incoming/src/libcore/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ mod tests {
914914

915915
#[test]
916916
fn test() {
917-
assert (!path::path_is_absolute(~"test-path"));
917+
assert (!Path("test-path").is_absolute);
918918

919919
log(debug, ~"Current working directory: " + getcwd().to_str());
920920

0 commit comments

Comments
 (0)