This commit is contained in:
lyon 2022-05-05 19:19:37 +08:00
parent fbd44fda32
commit 69a4510d0e
4 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,6 @@
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
void pika_binder(void);

View File

@ -2,7 +2,10 @@ import Arm2D
import PikaStdLib import PikaStdLib
import ctypes import ctypes
import module import module
import PikaDebug
pdb = PikaDebug.Debuger()
pdb.set_trace()
line = Arm2D.Line() line = Arm2D.Line()
res = line.on() res = line.on()
line.off() line.off()

View File

@ -0,0 +1,5 @@
import module2
import PikaDebug
def test():
return 'test'

View File

@ -91,8 +91,8 @@ impl Compiler {
Ok(file) => file, Ok(file) => file,
Err(_) => { Err(_) => {
println!( println!(
" [warning]: file: '{}{}.pyi' no found", " [warning]: file: '{}{}.pyi' or '{}{}.py' no found",
self.source_path, file_name self.source_path, file_name, self.source_path, file_name
); );
return self; return self;
} }