summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
Diffstat (limited to 'py')
-rw-r--r--py/emitbc.c4
-rw-r--r--py/objrange.c2
-rw-r--r--py/repl.c1
3 files changed, 2 insertions, 5 deletions
diff --git a/py/emitbc.c b/py/emitbc.c
index f6bb229ba..0fbda56fd 100644
--- a/py/emitbc.c
+++ b/py/emitbc.c
@@ -794,10 +794,10 @@ static void emit_bc_call_function_method_helper(emit_t *emit, int stack_adj, mp_
// each positional arg is one object, each kwarg is two objects, the key
// and the value and one extra object for the star args bitmap.
stack_adj -= (int)n_positional + 2 * (int)n_keyword + 1;
- emit_write_bytecode_byte_uint(emit, stack_adj, bytecode_base + 1, (n_keyword << 8) | n_positional); // TODO make it 2 separate uints?
+ emit_write_bytecode_byte_uint(emit, stack_adj, bytecode_base + 1, (n_keyword << 8) | n_positional);
} else {
stack_adj -= (int)n_positional + 2 * (int)n_keyword;
- emit_write_bytecode_byte_uint(emit, stack_adj, bytecode_base, (n_keyword << 8) | n_positional); // TODO make it 2 separate uints?
+ emit_write_bytecode_byte_uint(emit, stack_adj, bytecode_base, (n_keyword << 8) | n_positional);
}
}
diff --git a/py/objrange.c b/py/objrange.c
index 9a4ecd3fc..5ccb04fba 100644
--- a/py/objrange.c
+++ b/py/objrange.c
@@ -33,7 +33,6 @@
typedef struct _mp_obj_range_it_t {
mp_obj_base_t base;
- // TODO make these values generic objects or something
mp_int_t cur;
mp_int_t stop;
mp_int_t step;
@@ -72,7 +71,6 @@ static mp_obj_t mp_obj_new_range_iterator(mp_int_t cur, mp_int_t stop, mp_int_t
typedef struct _mp_obj_range_t {
mp_obj_base_t base;
- // TODO make these values generic objects or something
mp_int_t start;
mp_int_t stop;
mp_int_t step;
diff --git a/py/repl.c b/py/repl.c
index b79a2d3c4..87c171cc8 100644
--- a/py/repl.c
+++ b/py/repl.c
@@ -225,7 +225,6 @@ static void print_completions(const mp_print_t *print,
gap += WORD_SLOT_LEN;
}
if (line_len + gap + d_len <= MAX_LINE_LEN) {
- // TODO optimise printing of gap?
for (int j = 0; j < gap; ++j) {
mp_print_str(print, " ");
}