Skip to content

Commit 5225889

Browse files
committed
Rename value -> rvalue.
1 parent ecc01d7 commit 5225889

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

data/toolbox/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import debugger
44
import command
55
import format
6-
import value as rvalue
6+
import rvalue
77
import rexception
88

99

data/toolbox/fiber.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Import command parser
1313
import command
1414
import constants
15-
import value as rvalue
15+
import rvalue
1616
import format
1717
import heap
1818
import rexception

data/toolbox/format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
import sys
9-
import value as rvalue
9+
import rvalue
1010

1111
class Style:
1212
"""Sentinel object representing a style."""

data/toolbox/heap.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import command
44
import constants
55
import format
6+
import rvalue
67

78
# Constants
89
RBASIC_FLAGS_TYPE_MASK = 0x1f
@@ -612,8 +613,6 @@ def invoke(self, arguments, terminal):
612613
print("(You may have reached the end of the heap)")
613614
return
614615

615-
import value as value_module
616-
617616
print(f"Found {len(objects)} object(s):")
618617
print()
619618

@@ -625,7 +624,7 @@ def invoke(self, arguments, terminal):
625624

626625
# Try to interpret and display the object
627626
try:
628-
interpreted = value_module.interpret(obj)
627+
interpreted = rvalue.interpret(obj)
629628

630629
terminal.print(
631630
format.metadata, f" [{i}] ",

data/toolbox/print.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Import utilities
77
import command
88
import constants
9-
import value as rvalue
9+
import rvalue
1010
import rstring
1111
import rarray
1212
import rhash

data/toolbox/rclass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import debugger
22
import constants
3-
import value as rvalue
3+
import rvalue
44
import rstring
55

66
class RClass:

data/toolbox/rexception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import debugger
22
import constants
33
import format
4-
import value as rvalue
4+
import rvalue
55
import rstring
66
import rclass
77

data/toolbox/stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import constants
99
import context
1010
import format
11-
import value as rvalue
11+
import rvalue
1212
import rstring
1313
import rexception
1414
import rsymbol

0 commit comments

Comments
 (0)