mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* stage1 * compiler pass build * introduce rustpython-compiler-source * stage2 * fixup * pass compile * Fix hello world compiler test * Fix code generation for if-elif-else statement * Fix code generation for lambda expression * Fix code generation for integers * Fix code generation for fstrings * Fix code generation for if statement * Fix code generation for if statement * Fix code generation for if statement * Fix code generation for fstring * Fix code generation for class definition * Replace feature flags * Initialize frozen core modules * Allow __future__ import after module doc comment * Disable ast module * Commit remaining fixes for compile errors in examples * Fix some warnings * Update ast stdlib module * Update ast stdlib module * Update ast stdlib module * Update ast stdlib module * Update ast stdlib module * Split ast stdlib module into files * Fix codegen for positional arguments with defaults * Update ast stdlib module * Update ast stdlib module * Extract string and constant handling from expression.rs * Always add required fields to AST nodes * Compile doc strings correctly again * Enable "ast" Cargo feature by default * Refactor compilation of big integer literal * Update ast stdlib module * Update ast stdlib module * Update ast stdlib module * Reset barebones example * Fix some left-over warnings * Undo accidential change * Adapt shell to ruff parser * Pin parser to v0.4.10 * fix clippy * Add TODO about interactive mode * Fix compilation of complex number expression * Remove moved code * Update test case to ruff v0.4.10 * Apply suggestion Co-authored-by: Jeong, YunWon <69878+youknowone@users.noreply.github.com> * Apply suggestion Co-authored-by: Jeong, YunWon <69878+youknowone@users.noreply.github.com> * Fix compilation of fstring expression * Fix compilation of fstring expression * Fix wasm compile errors * Attach correct source locations to ast objects * Fix some more wasm compile errors * Consider compile mode and enable AST stdlib module again * Fix incorrect AST source location end column * Fix compile error if "compiler" feature is not enabled * Fix regrtests * Fix some test_ast tests * Add source range to type ignore * Fix incompatibility with Rust 2024 edition * Fix todos by implementing missing ast conversions and deleting unused code * Appease clippy * Fix remaining ast tests * Fix remaining ast tests * Mark/fix remaining tests * Fix more * Hacky windows fix --------- Co-authored-by: Kangzhi Shi <shikangzhi@gmail.com> Co-authored-by: Jeong YunWon <jeong@youknowone.org> Co-authored-by: Jeong, YunWon <69878+youknowone@users.noreply.github.com> Co-authored-by: Noa <coolreader18@gmail.com>
64 lines
1.4 KiB
Python
Vendored
64 lines
1.4 KiB
Python
Vendored
"""Verify that warnings are issued for global statements following use."""
|
|
|
|
from test.support import check_syntax_error
|
|
from test.support.warnings_helper import check_warnings
|
|
import unittest
|
|
import warnings
|
|
|
|
|
|
class GlobalTests(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.enterContext(check_warnings())
|
|
warnings.filterwarnings("error", module="<test string>")
|
|
|
|
# TODO: RUSTPYTHON
|
|
@unittest.expectedFailure
|
|
def test1(self):
|
|
prog_text_1 = """\
|
|
def wrong1():
|
|
a = 1
|
|
b = 2
|
|
global a
|
|
global b
|
|
"""
|
|
check_syntax_error(self, prog_text_1, lineno=4, offset=5)
|
|
|
|
# TODO: RUSTPYTHON
|
|
@unittest.expectedFailure
|
|
def test2(self):
|
|
prog_text_2 = """\
|
|
def wrong2():
|
|
print(x)
|
|
global x
|
|
"""
|
|
check_syntax_error(self, prog_text_2, lineno=3, offset=5)
|
|
|
|
# TODO: RUSTPYTHON
|
|
@unittest.expectedFailure
|
|
def test3(self):
|
|
prog_text_3 = """\
|
|
def wrong3():
|
|
print(x)
|
|
x = 2
|
|
global x
|
|
"""
|
|
check_syntax_error(self, prog_text_3, lineno=4, offset=5)
|
|
|
|
def test4(self):
|
|
prog_text_4 = """\
|
|
global x
|
|
x = 2
|
|
"""
|
|
# this should work
|
|
compile(prog_text_4, "<test string>", "exec")
|
|
|
|
|
|
def setUpModule():
|
|
unittest.enterModuleContext(warnings.catch_warnings())
|
|
warnings.filterwarnings("error", module="<test string>")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|