Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove graphics.jl and Graphics module from base #10150

Merged
merged 2 commits into from
Feb 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ Library improvements
Deprecated or removed
---------------------

* The `Graphics` module has been removed from `Base` and is now a
standalone package ([#10150], [#9862]).

* Woodbury special matrix type has been removed from LinAlg ([#10024]).

* `median` and `median!` no longer accept a `checknan` keyword argument ([#8605]).
Expand Down
1 change: 0 additions & 1 deletion base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ export
# Modules
Collections,
FFTW,
Graphics,
Meta,
Operators,
Pkg,
Expand Down
316 changes: 0 additions & 316 deletions base/graphics.jl

This file was deleted.

3 changes: 0 additions & 3 deletions base/sysimg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,6 @@ importall .FastMath
include("pkg.jl")
const Git = Pkg.Git

# base graphics API
include("graphics.jl")

# profiler
include("profile.jl")
importall .Profile
Expand Down
1 change: 0 additions & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
stdlib/punctuation
stdlib/sort
stdlib/pkg
stdlib/graphics
stdlib/dates
stdlib/test
stdlib/c
Expand Down
2 changes: 0 additions & 2 deletions doc/manual/methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,6 @@ Julia language. Core operations typically have dozens of methods::
+(a::VWPreBuild,b::VWPreBuild) at pkg/resolve/versionweight.jl:120
+(a::VersionWeight,b::VersionWeight) at pkg/resolve/versionweight.jl:164
+(a::FieldValue,b::FieldValue) at pkg/resolve/fieldvalue.jl:41
+(a::Vec2,b::Vec2) at graphics.jl:60
+(bb1::BoundingBox,bb2::BoundingBox) at graphics.jl:123
+(a,b,c) at operators.jl:82
+(a,b,c,xs...) at operators.jl:83

Expand Down
Loading