| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-01-11 | Merge pull request #4443 from wting/4386_add_privs | Tim Chevalier | -5/+5 | |
| Adds priv qualifiers where they have been commented out before implementation. | ||||
| 2013-01-11 | libstd: Ignore failing test on Windows | Patrick Walton | -0/+3 | |
| 2013-01-11 | Comment out test_decode_form_urlencoded again. Filed issue 4449. rs=breakage | Tim Chevalier | -0/+4 | |
| 2013-01-11 | libstd: Fix std test. rs=busted | Patrick Walton | -86/+111 | |
| 2013-01-11 | Make std::sync::semaphore() public | Jens Nockert | -1/+1 | |
| 2013-01-11 | Adds priv qualifiers where they have been commented out before implementation. | William Ting | -5/+5 | |
| Updates #4386. | ||||
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -159/+207 | |
| 2013-01-10 | std: Address XXXes in flatpipes | Tim Chevalier | -67/+70 | |
| 2013-01-10 | std: Fix pattern match on reference, address an XXX | Tim Chevalier | -18/+16 | |
| 2013-01-10 | std: Fix net_url test that was commented out | Tim Chevalier | -3/+2 | |
| 2013-01-10 | std: Fix test that was commented out | Tim Chevalier | -14/+11 | |
| 2013-01-10 | core: Change XXXs into proper FIXMEs with issue numbers | Tim Chevalier | -6/+6 | |
| 2013-01-10 | Fix: BigInt tests fail on 32-bit platforms | gifnksm | -28/+110 | |
| 2013-01-10 | Rename memcpy, memmove, memset to prevent any confusion with the C equivalents. | William Ting | -1/+1 | |
| Closes #4203. | ||||
| 2013-01-09 | std: fix net::tcp::test fallout from 2db3abd harder | Graydon Hoare | -13/+16 | |
| 2013-01-09 | A collection of refactorings that I found it hard/tiresome to divide: | Niko Matsakis | -19/+22 | |
| - Make `extern fn()` assignable to any closure type, rather than a subtype. - Remove unused int_ty_set and float_ty_set - Refactor variable unification and make it more DRY - Do fn sub/lub/glb on the level of fn_sig - Rename infer::to_str::ToStr to infer::to_str::InferStr - Capitalize names of various types - Correct hashing of FnMeta - Convert various records-of-fns into structs-of-fns. This is both eliminating use of deprecated features and more forwards compatible with fn reform. r=pcwalton | ||||
| 2013-01-09 | std: fix net::tcp::test fallout from 2db3abd | Graydon Hoare | -1/+5 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -31/+201 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Only ignore failing bigint tests on 32-bit platforms | Brian Anderson | -4/+8 | |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -198/+30 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -30/+198 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Ignore some failing bigint tests | Brian Anderson | -0/+4 | |
| 2013-01-08 | Merge remote-tracking branch 'gifnksm/bigint' into kind-names | Brian Anderson | -0/+1499 | |
| 2013-01-02 | remove apparently-superfluous extra parens from types | Tim Chevalier | -2/+2 | |
| 2013-01-02 | std: Constify the bytes sent to Sha1::input | Peter Williams | -4/+4 | |
| We are of course never going to modify the data, and this change allows us to accept data from to_bytes::IterBytes types. | ||||
| 2012-12-31 | Merge pull request #4324 from steveklabnik/std_net | Brian Anderson | -1/+11 | |
| Add some extra description for std::net | ||||
| 2013-01-01 | Add some extra description for std::net | Steve Klabnik | -1/+11 | |
| 2012-12-29 | libstd: Comment out mysteriously failing net-url test. rs=busted | Patrick Walton | -2/+3 | |
| 2012-12-28 | doc: Rename mention of insert_or_update_with_key | Ben Alpert | -1/+1 | |
| As far as I can tell, these docs were meant to refer to update_with_key. | ||||
| 2012-12-28 | libstd: Fix tests. rs=bustage | Patrick Walton | -11/+69 | |
| 2012-12-27 | libstd: Fix a bunch of resolve errors in tests. rs=fire | Patrick Walton | -13/+118 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -116/+375 | |
| contain at least two components. r=graydon | ||||
| 2012-12-27 | Enhance auto_encode to take number of struct fields | Michael Neumann | -8/+8 | |
| emit_struct and read_struct takes an additional len:uint parameter which tells us how many fields the struct we are working on has. This is required to implement an Encoder for the msgpack [1] serialization format. To serialize a struct with msgpack you have to use arrays and the size of the array has to be know before each of the elements are written out. JSON as an example doesn't have this problem as it uses '[' and ']' delimiters for arrays. [1]: www.msgpack.org | ||||
| 2012-12-24 | Convert core::io to use explicit self (for issue #4118 and issue #2004) | gareth | -15/+15 | |
| 2012-12-24 | std: Mark some functions as pure | Chris Peterson | -12/+12 | |
| 2012-12-24 | bump 0.5 => 0.6, redirect some URLs in docs. | Graydon Hoare | -2/+2 | |
| 2012-12-24 | std: modernize net_url | Erick Tryzelaar | -364/+316 | |
| This switches over to using structs and send_maps for query string parsing. | ||||
| 2012-12-24 | Switch chain calls to use Option::chain method | Erick Tryzelaar | -78/+39 | |
| 2012-12-24 | Merge pull request #4278 from cpeterso/incoming-pure-functions | Tim Chevalier | -12/+12 | |
| Mark some more core and std functions as pure | ||||
| 2012-12-24 | Convert core::io to use explicit self (for issue #4118 and issue #2004) | gareth | -15/+15 | |
| 2012-12-23 | std: Mark some functions as pure | Chris Peterson | -12/+12 | |
| 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-23 | Merge pull request #4249 from graydon/0.6-bump | Tim Chevalier | -2/+2 | |
| bump 0.5 => 0.6, redirect some URLs in docs. | ||||
| 2012-12-23 | Merge pull request #4251 from erickt/url | Tim Chevalier | -364/+316 | |
| std: modernize net_url | ||||
| 2012-12-22 | Convert @[BigDigit] to ~[BigDigit] | gifnksm | -279/+254 | |
| 2012-12-22 | Impl Zero, One of BigInt, BigUint | gifnksm | -73/+85 | |
| 2012-12-22 | Convert std::bigint to explicit self. | gifnksm | -45/+52 | |
| 2012-12-22 | Move BigUint and BigDIgit to std::bigint. | gifnksm | -845/+834 | |
| 2012-12-22 | Implement BigInt and BigUint. | gifnksm | -0/+1505 | |
| 2012-12-21 | bump 0.5 => 0.6, redirect some URLs in docs. | Graydon Hoare | -2/+2 | |
