Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cs50/python-cs50
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.3.1
Choose a base ref
...
head repository: cs50/python-cs50
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 14 commits
  • 8 files changed
  • 3 contributors

Commits on Dec 17, 2023

  1. Copy the full SHA
    1b644dd View commit details
  2. increments version

    dmalan committed Dec 17, 2023
    Copy the full SHA
    14a9741 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d981368 View commit details
  4. Merge pull request #180 from cs50/updates

    updated IO wrapper, style, version
    dmalan authored Dec 17, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c73d1d2 View commit details

Commits on Dec 18, 2023

  1. updated style

    dmalan committed Dec 18, 2023
    Copy the full SHA
    fc6647a View commit details
  2. fixed YAML

    dmalan committed Dec 18, 2023
    Copy the full SHA
    128f498 View commit details
  3. fixed merge

    dmalan committed Dec 18, 2023
    Copy the full SHA
    3b90369 View commit details
  4. updated for MySQL tests

    dmalan committed Dec 18, 2023
    Copy the full SHA
    e47cc35 View commit details
  5. updated SQLAlchemy versioning

    dmalan committed Dec 18, 2023
    Copy the full SHA
    dc6a43f View commit details

Commits on Mar 4, 2024

  1. updated workflow actions

    rongxin-liu committed Mar 4, 2024
    Copy the full SHA
    688af68 View commit details

Commits on May 2, 2024

  1. updated actions/github-script to version v7

    rongxin-liu committed May 2, 2024
    Copy the full SHA
    d67a26b View commit details

Commits on Oct 15, 2024

  1. adds support for VACUUM

    dmalan committed Oct 15, 2024
    Copy the full SHA
    2d5fd94 View commit details
  2. fixes raw strings

    dmalan committed Oct 15, 2024
    Copy the full SHA
    f81a0a3 View commit details
  3. Merge pull request #186 from cs50/vacuum

    Adds support for `VACUUM`, fixes raw strings
    rongxin-liu authored Oct 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e75afaf View commit details
Showing with 205 additions and 87 deletions.
  1. +3 −3 .github/workflows/main.yml
  2. +2 −2 docker-compose.yml
  3. +2 −2 setup.py
  4. +1 −0 src/cs50/__init__.py
  5. +33 −16 src/cs50/cs50.py
  6. +8 −2 src/cs50/flask.py
  7. +149 −61 src/cs50/sql.py
  8. +7 −1 tests/sql.py
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@ jobs:
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.7'
check-latest: true
@@ -56,7 +56,7 @@ jobs:
- name: Create Release
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ services:
- postgres
environment:
MYSQL_HOST: mysql
POSTGRESQL_HOST: postgresql
POSTGRESQL_HOST: postgres
links:
- mysql
- postgres
@@ -20,7 +20,7 @@ services:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
healthcheck:
test: ["CMD", "mysqladmin", "-uroot", "ping"]
image: cs50/mysql:8
image: cs50/mysql
ports:
- 3306:3306
postgres:
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@
"Topic :: Software Development :: Libraries :: Python Modules"
],
description="CS50 library for Python",
install_requires=["Flask>=1.0", "packaging", "SQLAlchemy<3", "sqlparse", "termcolor", "wheel"],
install_requires=["Flask>=1.0", "packaging", "SQLAlchemy>=2,<3", "sqlparse", "termcolor", "wheel"],
keywords="cs50",
license="GPLv3",
long_description_content_type="text/markdown",
name="cs50",
package_dir={"": "src"},
packages=["cs50"],
url="https://github.com/cs50/python-cs50",
version="9.3.1"
version="9.4.0"
)
1 change: 1 addition & 0 deletions src/cs50/__init__.py
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@

# Import cs50_*
from .cs50 import get_char, get_float, get_int, get_string

try:
from .cs50 import get_long
except ImportError:
49 changes: 33 additions & 16 deletions src/cs50/cs50.py
Original file line number Diff line number Diff line change
@@ -17,7 +17,9 @@

try:
# Patch formatException
logging.root.handlers[0].formatter.formatException = lambda exc_info: _formatException(*exc_info)
logging.root.handlers[
0
].formatter.formatException = lambda exc_info: _formatException(*exc_info)
except IndexError:
pass

@@ -37,26 +39,31 @@
_logger.addHandler(handler)


class _flushfile():
class _Unbuffered:
"""
Disable buffering for standard output and standard error.
http://stackoverflow.com/a/231216
https://stackoverflow.com/a/107717
https://docs.python.org/3/library/io.html
"""

def __init__(self, f):
self.f = f
def __init__(self, stream):
self.stream = stream

def __getattr__(self, name):
return getattr(self.f, name)
def __getattr__(self, attr):
return getattr(self.stream, attr)

def write(self, x):
self.f.write(x)
self.f.flush()
def write(self, b):
self.stream.write(b)
self.stream.flush()

def writelines(self, lines):
self.stream.writelines(lines)
self.stream.flush()

sys.stderr = _flushfile(sys.stderr)
sys.stdout = _flushfile(sys.stdout)

sys.stderr = _Unbuffered(sys.stderr)
sys.stdout = _Unbuffered(sys.stdout)


def _formatException(type, value, tb):
@@ -78,19 +85,29 @@ def _formatException(type, value, tb):
lines += line
else:
matches = re.search(r"^(\s*)(.*?)(\s*)$", line, re.DOTALL)
lines.append(matches.group(1) + colored(matches.group(2), "yellow") + matches.group(3))
lines.append(
matches.group(1)
+ colored(matches.group(2), "yellow")
+ matches.group(3)
)
return "".join(lines).rstrip()


sys.excepthook = lambda type, value, tb: print(_formatException(type, value, tb), file=sys.stderr)
sys.excepthook = lambda type, value, tb: print(
_formatException(type, value, tb), file=sys.stderr
)


def eprint(*args, **kwargs):
raise RuntimeError("The CS50 Library for Python no longer supports eprint, but you can use print instead!")
raise RuntimeError(
"The CS50 Library for Python no longer supports eprint, but you can use print instead!"
)


def get_char(prompt):
raise RuntimeError("The CS50 Library for Python no longer supports get_char, but you can use get_string instead!")
raise RuntimeError(
"The CS50 Library for Python no longer supports get_char, but you can use get_string instead!"
)


def get_float(prompt):
10 changes: 8 additions & 2 deletions src/cs50/flask.py
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
import pkgutil
import sys


def _wrap_flask(f):
if f is None:
return
@@ -17,10 +18,15 @@ def _wrap_flask(f):

if os.getenv("CS50_IDE_TYPE") == "online":
from werkzeug.middleware.proxy_fix import ProxyFix

_flask_init_before = f.Flask.__init__

def _flask_init_after(self, *args, **kwargs):
_flask_init_before(self, *args, **kwargs)
self.wsgi_app = ProxyFix(self.wsgi_app, x_proto=1) # For HTTPS-to-HTTP proxy
self.wsgi_app = ProxyFix(
self.wsgi_app, x_proto=1
) # For HTTPS-to-HTTP proxy

f.Flask.__init__ = _flask_init_after


@@ -30,7 +36,7 @@ def _flask_init_after(self, *args, **kwargs):

# If Flask wasn't imported
else:
flask_loader = pkgutil.get_loader('flask')
flask_loader = pkgutil.get_loader("flask")
if flask_loader:
_exec_module_before = flask_loader.exec_module

Loading