Skip to content

Commit 1cfd200

Browse files
committed
compile: note that diffs are caused by bugs in python 3.4
1 parent 6ab7061 commit 1cfd200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compile/compile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ func (c *compiler) Stmt(stmt ast.Stmt) {
343343
}
344344
// FIXME this puts a JUMP_FORWARD in when not
345345
// necessary (when no Orelse statements) but it
346-
// matches python3.4
346+
// matches python3.4 (this is fixed in py3.5)
347347
c.Jump(vm.JUMP_FORWARD, endif)
348348
c.Label(orelse)
349349
for _, stmt := range node.Orelse {

0 commit comments

Comments
 (0)