Skip to content

Commit

Permalink
Merge pull request #396 from polystat/fixDjangoAndTodo
Browse files Browse the repository at this point in the history
support assign-6, assign-7
  • Loading branch information
dours authored Oct 12, 2022
2 parents 21b079c + 9efefc5 commit 14ca009
Show file tree
Hide file tree
Showing 10 changed files with 94 additions and 78 deletions.
6 changes: 6 additions & 0 deletions transpiler/src/main/eo/preface/pyslice.eo
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+package preface
+alias xfakeclasses preface.xfakeclasses

[from to step] > pyslice
xfakeclasses.pySliceClass > x__class__
0 > force
1 change: 1 addition & 0 deletions transpiler/src/main/eo/preface/xfakeclasses.eo
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
fakeclass 13 > pyStringClass
fakeclass 17 > xpyTypeClass
fakeclass 18 > pyTupleClass
fakeclass 19 > pySliceClass

[typ1 typ2] > gt
seq > @
Expand Down
56 changes: 52 additions & 4 deletions transpiler/src/main/eo/preface/xmyArray.eo
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
+alias xfakeclasses preface.xfakeclasses
+alias stdout org.eolang.io.stdout
+alias sprintf org.eolang.txt.sprintf
+alias xAssertionError preface.xAssertionError

[] > xmyArray
[is-list initValue] > ap
[stackUp] > @
cage result > pResult
[] > result
0 > @
0 > force
cage initValue > value
is-list.if (xfakeclasses.pyListClass) (xfakeclasses.pyTupleClass) > x__class__
[] > to-my-array
Expand Down Expand Up @@ -134,10 +135,57 @@
[] > xsetAtIndex
[self key val] > ap
[stackUp] > @
(goto ((xmyArray.ap is-list *).@)).result > acc
memory 0 > i
val.iter 0 > it
seq > @
stdout "xsetAtIndex not supported for array\n"
stackUp.forward (goto (xAssertionError.ap.@))
0
if.
(key.x__class__.eq (xfakeclasses.pySliceClass))
seq
while.
(i.lt (key.from))
[unused]
seq > @
stdout (sprintf "i = %d\n" i)
(goto ((acc.xappend.ap acc (value.get i)).@)).result
i.write (i.plus 1)
0
stdout (sprintf "from = %d, to = %d\n" (key.from) (key.to))
goto
[exitLoop]
while. > @
(TRUE)
[unused]
(goto ((it.x__next__.ap it).@)) > to-append
if. > @
(to-append.x__class__.x__id__.eq (pyint 3))
seq
(goto ((acc.xappend.ap acc (to-append.result)).@)).result
0
exitLoop.forward 0
stdout "after 2nd while\n"
while.
(i.lt (value.length))
[unused]
seq > @
stdout (sprintf "i = %d\n" i)
(goto ((acc.xappend.ap acc (value.get i)).@)).result
i.write (i.plus 1)
0
value.write (acc.value)
stackUp.forward (return 0)
0
seq
while.
(i.lt (value.length))
[unused]
seq > @
(goto ((acc.xappend.ap acc ((key.value.eq i).if val (value.get i))).@)).result
i.write (i.plus 1)
0
value.write (acc.value)
stackUp.forward (return 0)
0
[] > x__iter__
[self] > ap
[stackUp] > @
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package org.polystat.py2eo.transpiler
import org.polystat.py2eo.parser.Expression.{
Binop, Binops, BoolLiteral, CallIndex, CollectionCons, CollectionKind, Compops, Cond,
DictCons, Field, FloatLiteral, FreakingComparison, IntLiteral, LazyLAnd,
LazyLOr, NoneLiteral, Parameter, SimpleComparison, StringLiteral, T, Unop, Unops,
LazyLOr, NoneLiteral, Parameter, SimpleComparison, Slice, StringLiteral, T, Unop, Unops,
UnsupportedExpr
}
import org.polystat.py2eo.parser.{AugOps, Expression, GeneralAnnotation, Statement, VarScope}
Expand Down Expand Up @@ -81,6 +81,9 @@ object PrintEO {
case Left((k, v)) => s" (pair ${e(k)} ${e(v)})"
}.mkString("")
(s"((*${elts}))")
case Slice(Some(from), Some(to), by0, ann) =>
val by = by0.getOrElse(IntLiteral(1, ann.pos))
s"(pyslice ${e(from)} ${e(to)} ${e(by)})"
case NoneLiteral(_) => "(pystring \"None: is there a None literal in the EO language?\")"
case IntLiteral(value, _) => s"(pyint $value)"
case FloatLiteral(value, _) => s"(pyfloat $value)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ object PrintLinearizedMutableEOWithCage {
"+alias stdout org.eolang.io.stdout",
"+alias sprintf org.eolang.txt.sprintf",
"+alias cage org.eolang.cage",
"+alias pyslice preface.pyslice",
"+alias pyint preface.pyint",
"+alias pair preface.pair",
"+alias pyfloat preface.pyfloat",
Expand Down Expand Up @@ -163,9 +164,9 @@ object PrintLinearizedMutableEOWithCage {
case Assign(List(lhs, rhs), _) if seqOfFields(lhs).isDefined =>
val collectionCons = rhs match {
case _ : Await | _ : Star | _ : DoubleStar |
_ : CollectionComprehension | _ : DictComprehension | _ : GeneratorComprehension | _ : Slice =>
_ : CollectionComprehension | _ : DictComprehension | _ : GeneratorComprehension =>
throw new GeneratorException("these expressions must be wrapped in a function call " +
"because a copy creation is needed and dataization is impossible")
"because a copy creation is needed and dataization is impossible: " + rhs)
case _ : CollectionCons | _ : DictCons => true
case _ => false
}
Expand Down Expand Up @@ -349,6 +350,7 @@ object PrintLinearizedMutableEOWithCage {
"cage 0 > xcurrent-exception",
"cage 0 > xexcinexc",
"cage FALSE > xcaught",
"pyslice 0 0 0 > dummy-pyslice-usage",
"pyint 0 > dummy-int-usage",
"pyfloat 0 > dummy-float-usage",
"pybool TRUE > dummy-bool-usage",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.polystat.py2eo.transpiler

import org.polystat.py2eo.parser.Expression.{CollectionCons, Star, T}

object StarInCollectionConstructor {
def apply(e : T) : T = e match {
case CollectionCons(kind, l, ann) =>
val l1 = l.flatMap({
case Star(CollectionCons(kind1, l, _), _) => l
case x : Any => List(x)
})
CollectionCons(kind, l1, ann)
case x : Any => x
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ object Transpile {
debugPrinter(y._1, "afterSimplifyFor")

try {
val rmWith = GenericStatementPasses.procStatement(SimplifyWith.apply)(y._1, y._2)
val starInCollCons = GenericStatementPasses.simpleProcExprInStatement(StarInCollectionConstructor.apply)(y._1, y._2)
debugPrinter(starInCollCons._1, "afterStarInCollCons")
val rmWith = GenericStatementPasses.procStatement(SimplifyWith.apply)(starInCollCons._1, starInCollCons._2)
debugPrinter(rmWith._1, "afterRmWith")
val rmAssert = GenericStatementPasses.procStatement(SimplifyAssert.apply)(rmWith._1, rmWith._2)
debugPrinter(rmAssert._1, "afterRmAssert")
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
enabled: False
enabled: True
python: |
def assignTest5():
def assignTest6():
class c:
f = 1
a = [10, 11, 12, 13]
(x, y) = [z, t] = c.f = a[0] = a[1] = 7, 8
a[2:1] = (7, 8)
i, *[j, k], l = (21, 22, 23, 24)
b1 = (x == 7) and (y == 8) and (z == 7) and (t == 8) and (c.f == (7, 8)) and a == [(7, 8), (7, 8), 7, 8, 12, 13]
b2 = (i == 21) and (j == 22) and (k == 23) and (l == 24)
return b1 and b2
assert assignTest5()
return (x == 7) and (y == 8) and (z == 7) and (t == 8) and (c.f == (7, 8)) and a == [(7, 8), (7, 8), 7, 8, 12, 13]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
enabled: True
python: |
def assignTest7():
i, *[j, k], l = (21, 22, 23, 24)
return (i == 21) and (j == 22) and (k == 23) and (l == 24)

1 comment on commit 14ca009

@0pdd
Copy link
Member

@0pdd 0pdd commented on 14ca009 Oct 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wasn't able to retrieve PDD puzzles from the code base and submit them to github. If you think that it's a bug on our side, please submit it to yegor256/0pdd:

set -x && set -e && set -o pipefail && cd /tmp/0pdd20221012-14-1y53h0e/Z2l0QGdpdGh1Yi5jb206cG9seXN0YXQvcHkyZW8uZ2l0 && pdd -v -f /tmp/20221012-21288-5e7f95 [1]: + set -e + set -o pipefail + cd /tmp/0pdd20221012-14-1y53h0e/Z2l0QGdpdGh1Yi5jb206cG9seXN0YXQvcHkyZW8uZ2l0 + pdd -v -f...

Please, copy and paste this stack trace to GitHub:

UserError
set -x && set -e && set -o pipefail && cd /tmp/0pdd20221012-14-1y53h0e/Z2l0QGdpdGh1Yi5jb206cG9seXN0YXQvcHkyZW8uZ2l0 && pdd -v -f /tmp/20221012-21288-5e7f95 [1]:
+ set -e
+ set -o pipefail
+ cd /tmp/0pdd20221012-14-1y53h0e/Z2l0QGdpdGh1Yi5jb206cG9seXN0YXQvcHkyZW8uZ2l0
+ pdd -v -f /tmp/20221012-21288-5e7f95

My version is 0.22.0
Ruby version is 2.7.5 at x86_64-linux
Reading from root dir /tmp/0pdd20221012-14-1y53h0e/Z2l0QGdpdGh1Yi5jb206cG9seXN0YXQvcHkyZW8uZ2l0
Reading runEO/pom.xml ...
Reading .gitignore ...
Reading README.md ...
Reading Dockerfile ...
Reading transpiler/pom.xml ...
Reading transpiler/src/main/eo/xmodules/xmath.eo ...
Reading transpiler/src/main/eo/preface/xmyMap.eo ...
Reading transpiler/src/main/eo/preface/continue.eo ...
Reading transpiler/src/main/eo/preface/pair.eo ...
Reading transpiler/src/main/eo/preface/xfakeclasses.eo ...
Reading transpiler/src/main/eo/preface/xfloat.eo ...
Reading transpiler/src/main/eo/preface/xValueError.eo ...
Reading transpiler/src/main/eo/preface/xtuple.eo ...
Reading transpiler/src/main/eo/preface/xBaseException.eo ...
Reading transpiler/src/main/eo/preface/xmap.eo ...
Reading transpiler/src/main/eo/preface/xiter.eo ...
Reading transpiler/src/main/eo/preface/pyfloat.eo ...
Reading transpiler/src/main/eo/preface/xTypeError.eo ...
Reading transpiler/src/main/eo/preface/pyint.eo ...
Reading transpiler/src/main/eo/preface/xZeroDivisionError.eo ...
Reading transpiler/src/main/eo/preface/break.eo ...
Reading transpiler/src/main/eo/preface/xrange.eo ...
Reading transpiler/src/main/eo/preface/xAssertionError.eo ...
Reading transpiler/src/main/eo/preface/xsum.eo ...
Reading transpiler/src/main/eo/preface/pycomplex.eo ...
Reading transpiler/src/main/eo/preface/pybool.eo ...
Reading transpiler/src/main/eo/preface/pyslice.eo ...
Reading transpiler/src/main/eo/preface/raiseNothing.eo ...
Reading transpiler/src/main/eo/preface/xlist.eo ...
Reading transpiler/src/main/eo/preface/newUID.eo ...
Reading transpiler/src/main/eo/preface/xmyArray.eo ...
Reading transpiler/src/main/eo/preface/raiseEmpty.eo ...
Reading transpiler/src/main/eo/preface/mkCopy.eo ...
Reading transpiler/src/main/eo/preface/xlen.eo ...
Reading transpiler/src/main/eo/preface/xstr.eo ...
Reading transpiler/src/main/eo/preface/xint.eo ...
Reading transpiler/src/main/eo/preface/xStopIteration.eo ...
Reading transpiler/src/main/eo/preface/xfilter.eo ...
Reading transpiler/src/main/eo/preface/pystring.eo ...
Reading transpiler/src/main/eo/preface/return.eo ...
Reading transpiler/src/main/eo/my-array.eo ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/PrintLinearizedMutableEOWithCage.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyAssigmentToIndex.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/Main.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/Transpile.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/StarInCollectionConstructor.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/ConcatStringLiteral.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyComprehension.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/ExtractAllCalls.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyFor.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/AddExplicitConstructionOfCollection.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyAnnotation.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyExceptions.scala ...
Puzzle 331-03e94078 0/DEV at transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyExceptions.scala
Puzzle 331-f66acb36 0/DEV at transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyExceptions.scala
Puzzle 331-db43ae41 0/DEV at transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyExceptions.scala
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/PrefixIdentsWithX.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/ComputeAccessibleIdents.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyIf.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyAssert.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyAssignmentList.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SubstituteExternalIdent.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/MarkUnsupportedConstructions.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/PrintEO.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/GenericStatementPasses.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyWith.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/AddExplicitSelfToMethodCalls.scala ...
Puzzle 47-e9d91baf 0/DEV at transpiler/src/main/scala/org/polystat/py2eo/transpiler/AddExplicitSelfToMethodCalls.scala
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/SimplifyAssignmentToCollectionCons.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/GenericExpressionPasses.scala ...
Puzzle 340-1f69bc36 0/DEV at transpiler/src/main/scala/org/polystat/py2eo/transpiler/GenericExpressionPasses.scala
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/Common.scala ...
Reading transpiler/src/main/scala/org/polystat/py2eo/transpiler/AnalysisSupport.scala ...
Reading transpiler/src/main/java/org/polystat/py2eo/transpiler/dummy.java ...
Reading transpiler/src/main/python/inheritance.py ...
Reading transpiler/src/main/python/C3.py ...
Reading transpiler/src/main/python/closureRuntime.py ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/django-pom.xml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/eo/map-tests.eo ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/dictionary-displays/dict-display-comprehension.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/dictionary-displays/dict-display.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comprehension-expression/comprehension-expression-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/list-displays/list-display.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/list-displays/list-simple-display.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/evaluation-order/eval_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/evaluation-order/operator_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/evaluation-order/evaluation-order-plus.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/conditional/conditional-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/conditional/conditional-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/lambda/lambda2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/lambda/lambda1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/lambda/lambda3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/lambda/lambda_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/literals/float_literal.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/literals/int_literal.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/literals/string_literal.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-15.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-7.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-6.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-14.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-8.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-18.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-16.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-9.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-13.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-10.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-19.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-20.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-11.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-12.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetic-conversions/conversion-17.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/attribute-reference/attribute-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/attribute-reference/attribute-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/bitwise-operators/bitwise-and.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/bitwise-operators/bitwise-xor.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/bitwise-operators/bitwsie-or.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/parenthesized-forms/parenthesized-expression-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/parenthesized-forms/parenthesized-expression-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/comparisons/comparison-6.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/unary-operators/unary-minus.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/unary-operators/unary-plus.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/unary-operators/unary-invert.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/set-displays/set-display-comprehension.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/power-operator/power-operator.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/shifting-operators/shifting-left.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/shifting-operators/shifting-right.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/boolean-operators/booleanAnd.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/boolean-operators/booleanOr.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/boolean-operators/booleanNot.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/expressions/arithmetics/arithmetics-integer.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-unpacking-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/def_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/def-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-unpacking-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-unpacking-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-unpacking-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-unpacking-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/function-def/eo_blocked_def-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/multiple-inheritance.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/simplest-derived-class.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/virtual-method-call.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/constructor-arguments.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/my-list.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/projection-sample.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/class/simplest-class.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/exceptions-finally-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/exceptions-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/exceptions-else-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/try_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/exceptions-0.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/exceptions-break-else-finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/try/my_range.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-7.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-else-if.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if_doc_1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-12.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-6.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-10.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if_doc_3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/if/if_doc_2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/for/for_else.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/for/for_doc_1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/for/my_range_for.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/for/for_test1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/with/with-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/trivial.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/while-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/while_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/while-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/while-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/while-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/compound-statements/while/else_while.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/set/set-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/set/set-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/print/print-string.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-6.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-append.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-len.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-def-len.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-get.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/list/list-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/dictionary/dict-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/dictionary/dict-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/dictionary/dict-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/library/dictionary/dict-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/annotated-assignment/annotated-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/annotated-assignment/annotated-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/annotated-assignment/annotated-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assert/assert-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assert/assert-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assert/assert-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assert/assert-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/nonlocal/nonlocal.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-7.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign_doc.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/augmented.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assignment-list.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-6.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/assign/assign-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_try_except_else.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_try_finally_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nested_while_break1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nfbe.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_try_break_else_finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nfb1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nested_while_break2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_break2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_break_else.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_except.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_break_else.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_try_else_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_try_except_break_finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nfb2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/for_try_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_try_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_break1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/while_break3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break/nfb3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/return/return-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/return/return-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/return/return-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/return/return-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/expression-statement/expression-statement-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/expression-statement/expression-statement-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/for_try_else_continue2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/nested_while_continue.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/fcn.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/for_try_else_continue1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/for_else_continue.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/for_continue.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/for_try_continue_else_finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/while_try_except_finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/while_continue.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/continue/fbcn.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/import-4.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/import-2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/import-3.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/own_module.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/import-5.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/import/import-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/pass/pass-1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/while_try_else_continue_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/for_try_else_finally.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/while_break_continue2.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/while_break_continue1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/for_try_else_continue_break.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/n1.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/eo_blocked_nfbce.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/simple-statements/break-continue/nested_while_break_continue.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/parser/whitespaces.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/parser/explicit-line-joining.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/parser/comments.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/simple-tests/parser/indentation.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/dummy_tests/modern_python.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/dummy_tests/broken_python.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/dummy_tests/javaCode.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/dummy_tests/javaScript.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/dummy_tests/cPlusPlus.yaml ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/integrationTests/test.py ...
Reading transpiler/src/test/resources/org/polystat/py2eo/transpiler/integrationTests/goto.eo ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/Commons.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/CPythonTests.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/TestGenModules.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/SimplifyAssertTest.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/DummyTests.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/DjangoTest.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/Counter.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/RunSingle.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/TestEnabledCounter.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/SimplifyIfTest.scala ...
Reading transpiler/src/test/scala/org/polystat/py2eo/transpiler/TestsSimple.scala ...
Reading .rultor.yml ...
Reading pom.xml ...
Reading checker/README.md ...
Reading checker/pom.xml ...
Reading checker/src/main/resources/org/polystat/py2eo/checker/head.html ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/Main.scala ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/Mutate.scala ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/Check.scala ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/Write.scala ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/WriteConstructions.scala ...
Reading checker/src/main/scala/org/polystat/py2eo/checker/TestResult.scala ...
Reading checker/src/main/java/org/polystat/py2eo/checker/dummy.java ...
Reading CITATION.cff ...
Reading LICENSE.txt ...
Reading .github/workflows/xcop.yml ...
Reading .github/workflows/github-ci.yml ...
Reading .github/workflows/pdd.yml ...
Reading .github/workflows/checker.yml ...
Reading .github/workflows/counter.yaml ...
Reading .github/workflows/cpython.yaml ...
Reading .github/workflows/django.yaml ...
Reading scalastyle_config.xml ...
ERROR: ERROR: scalastyle_config.xml; PDD::Error at scalastyle_config.xml:233: TODO must have a leading space to become a puzzle, as this page explains: https://github.com/cqfn/pdd#how-to-format
If you can't understand the cause of this issue or you don't know how to fix it, please submit a GitHub issue, we will try to help you: https://github.com/cqfn/pdd/issues. This tool is still in its beta version and we will appreciate your feedback. Here is where you can find more documentation: https://github.com/cqfn/pdd/blob/master/README.md.
Exit code is 1

/app/objects/git_repo.rb:73:in `rescue in block in xml'
/app/objects/git_repo.rb:70:in `block in xml'
/app/vendor/ruby-2.7.5/lib/ruby/2.7.0/tempfile.rb:291:in `open'
/app/objects/git_repo.rb:69:in `xml'
/app/objects/puzzles.rb:41:in `deploy'
/app/objects/jobs/job.rb:38:in `proceed'
/app/objects/jobs/job_starred.rb:32:in `proceed'
/app/objects/jobs/job_recorded.rb:31:in `proceed'
/app/objects/jobs/job_emailed.rb:33:in `proceed'
/app/objects/jobs/job_commiterrors.rb:33:in `proceed'
/app/objects/jobs/job_detached.rb:48:in `exclusive'
/app/objects/jobs/job_detached.rb:36:in `block in proceed'
/app/objects/jobs/job_detached.rb:36:in `fork'
/app/objects/jobs/job_detached.rb:36:in `proceed'
/app/0pdd.rb:530:in `process_request'
/app/0pdd.rb:367:in `block in <top (required)>'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1686:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1686:in `block in compile!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1023:in `block (3 levels) in route!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1042:in `route_eval'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1023:in `block (2 levels) in route!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1071:in `block in process_route'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1069:in `catch'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1069:in `process_route'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1021:in `block in route!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1018:in `each'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1018:in `route!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1140:in `block in dispatch!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `block in invoke'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `catch'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `invoke'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1135:in `dispatch!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:949:in `block in call!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `block in invoke'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `catch'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1112:in `invoke'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:949:in `call!'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:938:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/deflater.rb:44:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/xss_header.rb:18:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/path_traversal.rb:16:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/json_csrf.rb:26:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/base.rb:50:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/base.rb:50:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-protection-2.2.2/lib/rack/protection/frame_options.rb:31:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/logger.rb:17:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/common_logger.rb:38:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:255:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:248:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/head.rb:12:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/method_override.rb:24:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:218:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1993:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1553:in `block in call'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1769:in `synchronize'
/app/vendor/bundle/ruby/2.7.0/gems/sinatra-2.2.2/lib/sinatra/base.rb:1553:in `call'
/app/vendor/bundle/ruby/2.7.0/gems/rack-2.2.4/lib/rack/handler/webrick.rb:95:in `service'
/app/vendor/ruby-2.7.5/lib/ruby/2.7.0/webrick/httpserver.rb:140:in `service'
/app/vendor/ruby-2.7.5/lib/ruby/2.7.0/webrick/httpserver.rb:96:in `run'
/app/vendor/ruby-2.7.5/lib/ruby/2.7.0/webrick/server.rb:307:in `block in start_thread'

Please sign in to comment.