Skip to content

Commit 7c06c13

Browse files
committed
WIP misc
1 parent ad66be1 commit 7c06c13

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# -- Project information -----------------------------------------------------
5656

5757
project = "Hissp"
58-
copyright = "2019, 2020, 2021, 2022, 2023, 2024 Matthew Egan Odendahl"
58+
copyright = "2019, 2020, 2021, 2022, 2023, 2024, 2025 Matthew Egan Odendahl"
5959
author = "Matthew Egan Odendahl"
6060

6161

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
entry_points={"console_scripts": ["lissp=hissp.__main__:main"]},
6767
)
6868
# Build dist and install:
69-
# python setup.py bdist_wheel && pip install --force-reinstall setup\dist\hissp-*.whl
69+
# python setup.py bdist_wheel && pip install --force-reinstall setup/dist/hissp-*.whl
7070

7171
# RELEASE: Double-check setup data.
7272
# RELEASE: Clean build macros.py and make sure it's in the .whl.

src/hissp/macros.lissp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ only on the built-in special forms ``quote`` and ``lambda``, which makes
2828
their expansions compatible with advanced rewriting macros that process
2929
the Hissp expansions of other macros.
3030

31-
(The -``[#`` and `my# <myQzHASH_>` tags are also something of an
31+
(The -``[# <QzLSQB_QzHASH_>`` and `my# <myQzHASH_>` tags are also something of an
3232
exception, as one argument is written in Python to begin with.)
3333

3434
That only goes for arguments and doesn't apply to inlined helper

src/hissp/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def runsource(self, source, filename="<input>", symbol="single"):
5757
print(sys.ps1, source.replace("\n", f"\n{sys.ps2}"), sep="", file=sys.stderr)
5858
fn = f"<Compiled Hissp of {filename}:\n{self.lissp.compiler.linenos(source)}\n>"
5959
if super().runsource(source, fn, symbol):
60-
if super().runsource(source+"\n", fn, symbol):
60+
if super().runsource(source + "\n", fn, symbol):
6161
try:
6262
compile(source, fn, symbol)
6363
assert False, "uncompilable code compiled?!"

tests/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33
from hissp import transpile
44

5-
transpile("hissp", "macros")
65
transpile(__package__, "test_macros")

0 commit comments

Comments
 (0)