Skip to content

Commit 961a82c

Browse files
feat(source-maps): Flask test app for the unsupported-stack path (#3262)
1 parent efb1a36 commit 961a82c

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__/
2+
.venv/
3+
*.pyc
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from flask import Flask
2+
3+
app = Flask(__name__)
4+
5+
6+
@app.route("/")
7+
def index():
8+
return "hello"
9+
10+
11+
@app.route("/boom")
12+
def boom():
13+
raise RuntimeError("kaboom")
14+
15+
16+
if __name__ == "__main__":
17+
app.run(port=8000)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flask==3.1.3

0 commit comments

Comments
 (0)