Skip to content

Msvc test #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: ammaraskar/msvc-problem-matcher@master
- name: Build CPython
run: .\PCbuild\build.bat -e -p Win32
- name: Display build info
Expand All @@ -40,6 +41,7 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: ammaraskar/msvc-problem-matcher@master
- name: Build CPython
run: .\PCbuild\build.bat -e -p x64
- name: Display build info
Expand Down
2 changes: 1 addition & 1 deletion Modules/_csv.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ _csv_traverse(PyObject *m, visitproc visit, void *arg)
static void
_csv_free(void *m)
{
_csv_clear((PyObject *)m);
_csv_clear((PyObject **)m);
}

static struct PyModuleDef _csvmodule;
Expand Down