JuliaWeb / HttpParser.jl

Deprecated! Julia wrapper for joyent/http-parser
MIT License
13 stars 37 forks source link

Use Int and compat Dict, fix 0.4 deprecations. #33

Closed hayd closed 9 years ago

IainNZ commented 9 years ago

Yo @hayd does your editor add a blank line at the end of each file automatically?

hayd commented 9 years ago

I guess it does! Will see if I can correct that if it's an issue. :/

Does this need to be @compat Int(...) for 0.3?

IainNZ commented 9 years ago

Not sure, seems like it?

IainNZ commented 9 years ago
julia> using Compat

julia> Int(0x11)
ERROR: type cannot be constructed

julia> @compat Int(0x11)
17
hayd commented 9 years ago

fixed.

tkelman commented 9 years ago

should this be tagged at some point?