@@ -1342,7 +1342,7 @@ def _set_scale(self, figure, scale=None, base=None):
1342
1342
labelspacing = 0.02 , loc = 'best' ,
1343
1343
markerscale = 0.6 , ncol = 1 , numpoints = 2 ,
1344
1344
shadow = True , title = None )
1345
- def show (self , filename = None , linkmode = False , ** kwds ):
1345
+ def show (self , ** kwds ):
1346
1346
r"""
1347
1347
Show this graphics image immediately.
1348
1348
@@ -2003,31 +2003,7 @@ def show(self, filename=None, linkmode=False, **kwds):
2003
2003
...
2004
2004
ValueError: figsize should be a positive number or a list of two positive numbers, not [2, 3, 4]
2005
2005
sage: P.show(figsize=[sqrt(2),sqrt(3)])
2006
-
2007
- ::
2008
-
2009
- sage: P = plot(x^2,(x,0,1))
2010
- sage: P.show(linkmode=True)
2011
- doctest:...: DeprecationWarning: the filename and linkmode arguments are deprecated, use save() to save
2012
- See http://trac.sagemath.org/17234 for details.
2013
- doctest:...: DeprecationWarning: use tmp_filename instead
2014
- See http://trac.sagemath.org/17234 for details.
2015
- "<img src='cell:///...png'>"
2016
- """
2017
- if filename or linkmode :
2018
- from sage .misc .superseded import deprecation
2019
- deprecation (17234 ,'the filename and linkmode arguments are deprecated, '
2020
- 'use save() to save' )
2021
- if filename is None :
2022
- from sage .misc .temporary_file import graphics_filename
2023
- filename = graphics_filename ()
2024
- self .save (filename , ** kwds )
2025
- if linkmode :
2026
- return "<img src='cell://%s'>" % filename
2027
- else :
2028
- html ("<img src='cell://%s'>" % filename )
2029
- return
2030
-
2006
+ """
2031
2007
from sage .repl .rich_output import get_display_manager
2032
2008
dm = get_display_manager ()
2033
2009
dm .display_immediately (self , ** kwds )
@@ -3078,7 +3054,7 @@ def save_image(self, filename=None, *args, **kwds):
3078
3054
labelspacing = 0.02 , loc = 'best' ,
3079
3055
markerscale = 0.6 , ncol = 1 , numpoints = 2 ,
3080
3056
shadow = True , title = None )
3081
- def save (self , filename = None , ** kwds ):
3057
+ def save (self , filename , ** kwds ):
3082
3058
r"""
3083
3059
Save the graphics to an image file.
3084
3060
@@ -3172,11 +3148,6 @@ def save(self, filename=None, **kwds):
3172
3148
transparent = options .pop ('transparent' )
3173
3149
fig_tight = options .pop ('fig_tight' )
3174
3150
3175
- if filename is None :
3176
- from sage .misc .superseded import deprecation
3177
- deprecation (17234 ,'the filename argument is now mandatory' )
3178
- from sage .misc .temporary_file import graphics_filename
3179
- filename = graphics_filename ()
3180
3151
ext = os .path .splitext (filename )[1 ].lower ()
3181
3152
3182
3153
if ext not in ALLOWED_EXTENSIONS :
@@ -3591,7 +3562,7 @@ def append(self, g):
3591
3562
# Not clear if there is a way to do this
3592
3563
raise NotImplementedError ('Appending to a graphics array is not yet implemented' )
3593
3564
3594
- def save (self , filename = None , dpi = DEFAULT_DPI , figsize = None , axes = None ,
3565
+ def save (self , filename , dpi = DEFAULT_DPI , figsize = None , axes = None ,
3595
3566
** kwds ):
3596
3567
r"""
3597
3568
Save the graphics array.
@@ -3636,11 +3607,6 @@ def save(self, filename=None, dpi=DEFAULT_DPI, figsize=None, axes=None,
3636
3607
"""
3637
3608
if figsize is not None :
3638
3609
self ._set_figsize_ (figsize )
3639
- if filename is None :
3640
- from sage .misc .superseded import deprecation
3641
- deprecation (17234 ,'the filename argument is now mandatory' )
3642
- from sage .misc .temporary_file import graphics_filename
3643
- filename = graphics_filename ()
3644
3610
3645
3611
#glist is a list of Graphics objects:
3646
3612
glist = self ._glist
0 commit comments