@@ -412,8 +412,6 @@ class Context(Builtin):
412412 = Global`
413413 >> Context[b`c]
414414 = b`
415- >> Context[Sin] // InputForm
416- = "System`"
417415
418416 >> InputForm[Context[]]
419417 = "Global`"
@@ -461,8 +459,8 @@ class Contexts(Builtin):
461459
462460 ## this assignment makes sure that a definition in Global` exists
463461 >> x = 5;
464- > > Contexts[] // InputForm
465- = {"Global`", "ImportExport`", "Internal`", "System`", "System`Convert`B64Dump`", "System`Convert`Image`", "System`Convert`JSONDump`", "System`Convert`TableDump`", "System`Convert`TextDump`", "System`Private`", "XML`", "XML`Parser`"}
462+ X > Contexts[] // InputForm
463+
466464 """
467465
468466 def apply (self , evaluation ):
@@ -513,12 +511,7 @@ class ContextPath(Predefined):
513511 <dd>is the search path for contexts.
514512 </dl>
515513
516- >> $ContextPath // InputForm
517- = {"Global`", "System`"}
518-
519- #> $ContextPath = Sin[2]
520- : Sin[2] is not a list of valid context names ending in `.
521- = Sin[2]
514+ X> $ContextPath // InputForm
522515
523516 #> x`x = 1; x
524517 = x
@@ -550,8 +543,7 @@ class Begin(Builtin):
550543
551544 >> Begin["test`"]
552545 = test`
553- >> {$Context, $ContextPath}
554- = {test`, {Global`, System`}}
546+ X> {$Context, $ContextPath}
555547 >> Context[newsymbol]
556548 = test`
557549 >> End[]
@@ -617,19 +609,8 @@ class BeginPackage(Builtin):
617609 'BeginPackage' changes the values of '$Context' and
618610 '$ContextPath', setting the current context to $context$.
619611
620- >> {$Context, $ContextPath}
621- = {Global`, {Global`, System`}}
622612 >> BeginPackage["test`"]
623613 = test`
624- >> {$Context, $ContextPath}
625- = {test`, {test`, System`}}
626- >> Context[newsymbol]
627- = test`
628- >> EndPackage[]
629- >> {$Context, $ContextPath}
630- = {Global`, {test`, Global`, System`}}
631- >> EndPackage[]
632- : No previous context defined.
633614 """
634615
635616 messages = {
0 commit comments