| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -2/+2 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-05-23 | std: Move unstable::finally to std::finally. #1457 | Brian Anderson | -2/+2 | |
| [breaking-change] | ||||
| 2014-05-07 | core: Get coretest working | Alex Crichton | -2/+3 | |
| This mostly involved frobbing imports between realstd, realcore, and the core being test. Some of the imports are a little counterintuitive, but it mainly focuses around libcore's types not implementing Show while libstd's types implement Show. | ||||
| 2014-05-07 | core: Bring char/finally test style up to date | Alex Crichton | -42/+45 | |
| 2014-05-07 | core: Inherit the finally module | Alex Crichton | -0/+165 | |
