Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
pyupgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nishantjr committed Jul 11, 2023
1 parent 60dc23b commit c28d8fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deps/k
Submodule k updated 33 files
+3 −2 .github/workflows/release.yml
+4 −1 .github/workflows/test-pr.yml
+17 −18 docs/user_manual.md
+60 −722 flake.lock
+8 −9 flake.nix
+1 −1 haskell-backend/src/main/native/haskell-backend
+1 −1 install-k
+1 −1 k-distribution/include/kframework/builtin/domains.md
+12 −13 k-distribution/k-tutorial/1_basic/04_disambiguation/README.md
+1 −1 k-distribution/k-tutorial/1_basic/05_modules/README.md
+1 −1 k-distribution/k-tutorial/1_basic/11_casts/README.md
+13 −11 k-distribution/pl-tutorial/1_k/4_imp++/lesson_8/imp.md
+3 −3 k-distribution/pl-tutorial/2_languages/1_simple/1_untyped/simple-untyped.md
+1 −1 k-distribution/pl-tutorial/2_languages/1_simple/2_typed/1_static/simple-typed-static.md
+2 −2 k-distribution/pl-tutorial/2_languages/3_fun/1_untyped/1_environment/fun-untyped.md
+1 −1 k-distribution/tests/regression-new/checks/checkGroup.k.out
+0 −3 k-distribution/tests/regression-new/checks/checkModuleAtts.k
+0 −3 k-distribution/tests/regression-new/checks/checkModuleAtts.k.out
+3 −4 k-distribution/tests/regression-new/group/test.k
+5 −10 kernel/src/main/java/org/kframework/backend/kore/ModuleToKORE.java
+4 −0 kernel/src/main/java/org/kframework/compile/GenerateSentencesFromConfigDecl.java
+43 −16 kernel/src/main/java/org/kframework/compile/ProcessGroupAttributes.java
+0 −8 kernel/src/main/java/org/kframework/compile/checks/CheckAtt.java
+1 −5 kernel/src/main/java/org/kframework/kompile/Kompile.java
+8 −14 kernel/src/main/java/org/kframework/parser/json/JsonParser.java
+1 −4 kernel/src/main/java/org/kframework/unparser/ToJson.java
+10 −42 kore/src/main/java/org/kframework/utils/StringUtil.java
+4 −45 kore/src/main/scala/org/kframework/attributes/Att.scala
+1 −1 llvm-backend/src/main/native/llvm-backend
+0 −1 nix/k.nix
+1 −1 package/arch/PKGBUILD
+1 −1 package/debian/changelog
+1 −1 package/version
2 changes: 1 addition & 1 deletion src/proof_generation/scripts/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def debug(msg: str) -> None:


def run_command(command: list[str], **kwargs: Any) -> subprocess.Popen:
command_str = ' '.join([shlex.quote(frag) for frag in command])
command_str = shlex.join(command)
debug(f"{ANSI.in_gray('+ ' + command_str)}")
return subprocess.Popen(command, **kwargs)

Expand Down
2 changes: 1 addition & 1 deletion src/proof_generation/scripts/proof_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def debug(msg: str) -> None:


def run_command(command: list[str], **kwargs: Any) -> subprocess.Popen:
command_str = ' '.join([shlex.quote(frag) for frag in command])
command_str = shlex.join(command)
debug(f"{ANSI.in_gray('+ ' + command_str)}")
return subprocess.Popen(command, **kwargs)

Expand Down
2 changes: 1 addition & 1 deletion src/proof_generation/scripts/prove_reachability.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


def run_command(command: list[str], **kwargs: Any) -> subprocess.Popen:
command_str = ' '.join([shlex.quote(frag) for frag in command])
command_str = shlex.join(command)
print(f"{ANSI.in_gray('+ ' + command_str)}", file=sys.stderr)
return subprocess.Popen(command, **kwargs)

Expand Down
2 changes: 1 addition & 1 deletion src/proof_generation/scripts/prove_symbolic.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def run_command(command: list[str], **kwargs: Any) -> subprocess.Popen:
command_str = ' '.join([shlex.quote(frag) for frag in command])
command_str = shlex.join(command)
print(f"{ANSI.in_gray('+ ' + command_str)}", file=sys.stderr)
return subprocess.Popen(command, **kwargs)

Expand Down

0 comments on commit c28d8fa

Please sign in to comment.