@@ -1546,10 +1546,7 @@ class Glue(Node):
15461546 it's easier to stick to what TeX does.)
15471547 """
15481548
1549- glue_subtype = _api .deprecated ("3.3" )(property (lambda self : "normal" ))
1550-
1551- @_api .delete_parameter ("3.3" , "copy" )
1552- def __init__ (self , glue_type , copy = False ):
1549+ def __init__ (self , glue_type ):
15531550 super ().__init__ ()
15541551 if isinstance (glue_type , str ):
15551552 glue_spec = _GlueSpec ._named [glue_type ]
@@ -1571,51 +1568,6 @@ def grow(self):
15711568 self .glue_spec = g ._replace (width = g .width * GROW_FACTOR )
15721569
15731570
1574- # Some convenient ways to get common kinds of glue
1575-
1576-
1577- @_api .deprecated ("3.3" , alternative = "Glue('fil')" )
1578- class Fil (Glue ):
1579- def __init__ (self ):
1580- super ().__init__ ('fil' )
1581-
1582-
1583- @_api .deprecated ("3.3" , alternative = "Glue('fill')" )
1584- class Fill (Glue ):
1585- def __init__ (self ):
1586- super ().__init__ ('fill' )
1587-
1588-
1589- @_api .deprecated ("3.3" , alternative = "Glue('filll')" )
1590- class Filll (Glue ):
1591- def __init__ (self ):
1592- super ().__init__ ('filll' )
1593-
1594-
1595- @_api .deprecated ("3.3" , alternative = "Glue('neg_fil')" )
1596- class NegFil (Glue ):
1597- def __init__ (self ):
1598- super ().__init__ ('neg_fil' )
1599-
1600-
1601- @_api .deprecated ("3.3" , alternative = "Glue('neg_fill')" )
1602- class NegFill (Glue ):
1603- def __init__ (self ):
1604- super ().__init__ ('neg_fill' )
1605-
1606-
1607- @_api .deprecated ("3.3" , alternative = "Glue('neg_filll')" )
1608- class NegFilll (Glue ):
1609- def __init__ (self ):
1610- super ().__init__ ('neg_filll' )
1611-
1612-
1613- @_api .deprecated ("3.3" , alternative = "Glue('ss')" )
1614- class SsGlue (Glue ):
1615- def __init__ (self ):
1616- super ().__init__ ('ss' )
1617-
1618-
16191571class HCentered (Hlist ):
16201572 """
16211573 A convenience class to create an `Hlist` whose contents are
0 commit comments