Skip to content

Commit

Permalink
Remove 3.11-dev again
Browse files Browse the repository at this point in the history
  • Loading branch information
oittaa committed Dec 20, 2021
1 parent b39d82a commit 9c573d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev', 'pypy-3.7', 'pypy-3.8']
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
steps:
- uses: actions/checkout@v2.4.0
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 1 addition & 5 deletions gcp_storage_emulator/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import json
import logging
import re
import sys
import threading
import time
import zlib
Expand Down Expand Up @@ -304,10 +303,7 @@ def close(self):

self._handler.send_header("Content-Length", str(len(content)))
self._handler.end_headers()
try:
self._handler.wfile.write(content)
except BrokenPipeError:
sys.stdout = None
self._handler.wfile.write(content)


class Router(object):
Expand Down

0 comments on commit 9c573d5

Please sign in to comment.