Skip to content

Commit

Permalink
add news entry for #12576
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Aug 18, 2015
1 parent 92deb0a commit 6f7f8d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ New language features
Language changes
----------------

* Module `__init__` methods no longer swallow thrown exceptions, they now
throw an `InitException` referencing the thrown exception. ([#12576])

* Tuple types are now written as `Tuple{A, B}` instead of as `(A, B)`.
Tuples of bits types are inlined into structs and arrays, like other
immutable types.
Expand Down

4 comments on commit 6f7f8d1

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wasn't __init__ introduced during the 0.4-dev phase?

@jakebolewski
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it was from v0.3.

@ivarne
Copy link
Member

@ivarne ivarne commented on 6f7f8d1 Aug 18, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It had very little use outside of Base in 0.3, but it was needed in some packages that wanted to support beeing compiled into the system image via userimg.jl.

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, ok, I had misremembered it as new in this release cycle.

Please sign in to comment.