forked from scoder/lupa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # .github/workflows/ci.yml # .github/workflows/wheels.yml # appveyor.yml # pyproject.toml # requirements.txt # setup.py
- Loading branch information
Showing
15 changed files
with
52 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
if __name__ == '__main__': | ||
import sys | ||
import unittest | ||
from . import suite | ||
sys.exit(1 if unittest.TextTestRunner(verbosity=2).run(suite()).failures else 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Cython>=3.0.9 | ||
Cython>=3.0.11,<3.1 | ||
setuptools<72.0.0 | ||
wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule lua54
updated
42 files
+2 −2 | lapi.c | |
+21 −7 | lauxlib.c | |
+19 −16 | lcode.c | |
+0 −3 | lcode.h | |
+128 −90 | ldebug.c | |
+1 −0 | ldebug.h | |
+7 −3 | ldo.c | |
+0 −1 | ldo.h | |
+12 −8 | lgc.c | |
+20 −7 | liolib.c | |
+24 −7 | lmathlib.c | |
+0 −9 | loadlib.c | |
+1 −1 | lobject.c | |
+8 −10 | lobject.h | |
+4 −4 | lopcodes.h | |
+2 −0 | loslib.c | |
+6 −6 | lparser.c | |
+3 −3 | lstate.c | |
+1 −2 | lstate.h | |
+7 −6 | lstring.c | |
+27 −12 | ltable.c | |
+0 −2 | ltable.h | |
+8 −2 | ltests.c | |
+2 −3 | ltm.h | |
+13 −4 | lua.c | |
+4 −4 | lua.h | |
+9 −0 | luaconf.h | |
+2 −2 | lundump.c | |
+1 −2 | lundump.h | |
+38 −40 | lvm.c | |
+1 −1 | manual/2html | |
+22 −11 | manual/manual.of | |
+0 −14 | testes/calls.lua | |
+5 −3 | testes/coroutine.lua | |
+13 −4 | testes/db.lua | |
+21 −5 | testes/errors.lua | |
+4 −4 | testes/files.lua | |
+30 −20 | testes/main.lua | |
+37 −20 | testes/pm.lua | |
+1 −1 | testes/sort.lua | |
+3 −0 | testes/strings.lua | |
+2 −0 | testes/utf8.lua |
Submodule luajit20
updated
from 4a2205 to e2e0b1
Submodule luajit21
updated
from 93e879 to f73e64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters