Thomas Orozco

Results 9 issues of Thomas Orozco

Consider this code: ```rust use derive_more::Display; #[derive(Display)] #[display(fmt = "Stuff({})", .bar)] pub struct Foo { bar: String } fn main() { println!("{}", Foo { bar: "test".into() }); } ``` This...

bug

If a program under test reads stdin (e.g. by accident), then cram's current behavior can be a little confusing, since what will happen is that it'll omit running anything because...

Hi there, This PR is more there to highlight an issue than to propose an actual fix, but: - In Django 1.7, the paginator class no longer uses a range,...

Hey there, curious to know if you were planning a 0.5 release to crates.io. I did see some discussion in #44 on the topic. I'm opening a new issue to...

Parse currently ignores any tokens after the 7th, which means invalid cron expressions might be allowed as long as invalid tokens are found after the 7th character. In some use...

This is helpful when an external build system (e.g. Buck) is taking care of linking liblz4, and we don't want the Rust compiler to emit any linking arguments. To do...

Appbundler currently sets `GEM_PATH` to `nil` (except when running with `APPBUNDLER_ALLOW_RVM`), but this does not fully achieve Appbundler's isolation goal. Indeed, when `GEM_PATH` is set to `nil`, Rubygems will use...

Hey there, thanks for this crate. Here are couple patches I've been using that I thought you might find useful to merge: default FDs to CLOEXEC Note: this is a...

When installing packages via the [Fastly-provided CDN](http://permalink.gmane.org/gmane.linux.distributions.alpine.devel/3149), performance is terrible from Europe, whereas the reverse is true when accessing via an AWS instance in us-east-1. Here are some timings: From...

question