| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-01-17 | librustc: Implement write guards for borrowing `@mut` to `&` or `&mut`. ↵ | Patrick Walton | -23/+23 | |
| r=nmatsakis | ||||
| 2013-01-16 | Implement Ord trait for Timespec | Chris Peterson | -2/+46 | |
| 2013-01-14 | Tidied up long lines | Ashok Gautham | -5/+8 | |
| 2013-01-13 | Add range checking in the time library | Ashok Gautham | -26/+24 | |
| This was requested in Issue #2350. New function match_digits_in_range added and used instead of match_digits wherever needed. | ||||
| 2013-01-13 | Fix errors in how parsed time values were used | Ashok Gautham | -2/+2 | |
| %u flag takes a value in the range of 1-7. However value needs to be stored in tm.tm_wday between 0 and 6. %y takes a two-digit year value. Subtracting 1900_i32 from it is not needed. | ||||
| 2013-01-13 | Fix incorrect error messages in the time library | Ashok Gautham | -5/+5 | |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -29/+41 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+3 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -3/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+3 | |
| module scope. r=tjc | ||||
| 2012-12-27 | libstd: Fix a bunch of resolve errors in tests. rs=fire | Patrick Walton | -6/+14 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -3/+7 | |
| contain at least two components. r=graydon | ||||
| 2012-12-23 | Merge pull request #4243 from erickt/incoming | Tim Chevalier | -78/+39 | |
| Fix a bug in Result::unwrap_err (and minor cleanup) | ||||
| 2012-12-20 | Ignore some time tests | Brian Anderson | -0/+2 | |
| 2012-12-20 | Switch chain calls to use Option::chain method | Erick Tryzelaar | -78/+39 | |
| 2012-12-17 | Switch from serialization to std::serialize. (snapshot) | Erick Tryzelaar | -4/+4 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-28 | core: Convert some records to structs | Brian Anderson | -15/+17 | |
| 2012-11-28 | Merge remote-tracking branch 'erickt/time' | Brian Anderson | -110/+154 | |
| Conflicts: src/libstd/time.rs | ||||
| 2012-11-28 | Register snapshots | Brian Anderson | -39/+0 | |
| 2012-11-26 | libstd: turn time::Tm and time::Timespec into structs | Erick Tryzelaar | -194/+169 | |
| This avoids #4044 by not using the enum wrapper, and turning Tm_ directly into a struct. Along the way it modernizes the codebase to eliminate no-implicit-copies warnings. | ||||
| 2012-11-26 | Made Tm_ a struct instead of a record and added serialization support to Tm ↵ | Jesse Jones | -17/+78 | |
| and Tm_. Not entirely clear what the best way to do this is. Right now we persist the entire struct which seems to be both portable and exactly round-trippable. | ||||
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+39 | |
| 2012-11-18 | Made the time to string functions pure as well as empty_tm. | Jesse Jones | -10/+14 | |
| This closes #3919. | ||||
| 2012-11-18 | Replace TmMut with inherited mutability | Jesse Jones | -30/+16 | |
| 2012-11-18 | Moved strptime and strftime into private helper functions. | Jesse Jones | -76/+84 | |
| Makes the public API much easier to see and prepares the way for making them pure. | ||||
| 2012-10-12 | Replace several common macros of the form #m[...] with m!(...) | Kevin Cantu | -2/+1 | |
| This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages... | ||||
| 2012-10-05 | Finally removing all uses of by-mut-ref | Tim Chevalier | -29/+4 | |
| The code for the mode itself is still there. | ||||
| 2012-10-05 | Remove uses of mutable ref mode. | Tim Chevalier | -1/+29 | |
| It's still in the compiler right now, but warned about | ||||
| 2012-10-05 | Revert "wip" | Tim Chevalier | -29/+1 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -1/+29 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -1/+1 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -2/+2 | |
| More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot. | ||||
| 2012-09-28 | De-export std::{time, prettyprint{,2}, arena}. Part of #3583. | Graydon Hoare | -26/+12 | |
| 2012-09-28 | Long lines | Brian Anderson | -5/+5 | |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -2/+1 | |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -1/+1 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -36/+0 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -1/+1 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+36 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -8/+16 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -16/+8 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -8/+16 | |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -1/+0 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -3/+4 | |
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -4/+4 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -1/+1 | |
| 2012-08-30 | libstd: More test fixes | Patrick Walton | -0/+23 | |
| 2012-08-29 | libstd: Fix some build breakage | Patrick Walton | -2/+2 | |
