Код: Выделить всё
:( buy handles valid purchase
expected to find "112.00" in page, but it wasn't found
Код: Выделить всё
def buy():
if request.method == "POST":
symbol = request.form.get("symbol").upper()
shares = request.form.get("shares")
if not symbol:
return apology("must provide symbol", 400)
elif not shares or not shares.isdigit() or int(shares)