Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
Fix for new lowering of triple-quote string macros
Browse files Browse the repository at this point in the history
The _mstr macros are no longer used, and dispatch to the _str macro
instead. JuliaLang/julia#10228
  • Loading branch information
pao committed May 8, 2015
1 parent 4ea9c64 commit 012be05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion juliadoc/jldoctest.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def compile(self, code, name, type, flags, dont_inherit):
def test_group(self, group, filename):

j = Popen(["../julia"], stdin=PIPE, stdout=PIPE, stderr=STDOUT)
j.stdin.write("macro raw_mstr(s) s end\n")
j.stdin.write("macro raw_str(s) s end\n")
j.stdin.write("_ans = nothing\n")
self.setup_runner.julia = j
self.test_runner.julia = j
Expand Down

0 comments on commit 012be05

Please sign in to comment.