Exported on 7/30/2025 at 13:31:24 CDT from Cursor (1.1.7)
User
can you see the current commit pointed at by the git branch "refactor-ring-io" and it's diff against "master"
| (setuptools-test) cgerrard@NVStation:/tmp/setuptools-test/eventlet$ ../bisect-test.sh | |
| + git clean -ffdx | |
| Removing dist/ | |
| Removing eventlet.egg-info/ | |
| + python setup.py sdist | |
| /tmp/setuptools-test/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated | |
| !! | |
| ******************************************************************************** | |
| Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). |
| INFO global: Vagrant version: 2.4.3 | |
| INFO global: Ruby version: 3.3.6 | |
| INFO global: RubyGems version: 3.5.22 | |
| INFO global: VAGRANT_RAM="2048" | |
| INFO global: VAGRANT_CPUS="1" | |
| INFO global: VAGRANT_BOX="bento/ubuntu-24.04" | |
| INFO global: VAGRANT_HOSTNAME="saio" | |
| INFO global: VAGRANT_LOG="debug" | |
| INFO global: VAGRANT_DEFAULT_PROVIDER="vmware_desktop" | |
| INFO global: VAGRANT_USERNAME="vagrant" |
| diff --git a/tests/test_parser.py b/tests/test_parser.py | |
| index 86584c3..74ad0a8 100644 | |
| --- a/tests/test_parser.py | |
| +++ b/tests/test_parser.py | |
| @@ -16,6 +16,32 @@ Connection: close | |
| '''.replace(b'\n', b'\r\n') | |
| +RESPONSE1_HEAD_NON_ASCII_KEY = b'''HTTP/1.1 200 OK | |
| +Date: Mon, 23 May 2005 22:38:34 GMT |
| from argparse import ArgumentParser | |
| import sys | |
| import json | |
| import datetime | |
| import os | |
| import logging | |
| import hashlib | |
| import boto3 | |
| from botocore.config import Config |
| #!/usr/bin/env python | |
| import argparse | |
| import sys | |
| import timeit | |
| from swift.common.utils import Namespace | |
| from swift.container.backend import ContainerBroker | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('path', help='path to the .db') |
| import logging | |
| import eventlet.patcher | |
| eventlet.patcher.monkey_patch(thread=True) | |
| import threading | |
| def take_and_release(): | |
| try: | |
| logging._lock.acquire() | |
| finally: |
| vagrant@saio:~$ curl http://127.0.0.4:6041/sdb4/47/AUTH_test/container-6fb8e61f-f131-4037-9219-83c400ba81e7 -v | |
| * Trying 127.0.0.4:6041... | |
| * TCP_NODELAY set | |
| * Connected to 127.0.0.4 (127.0.0.4) port 6041 (#0) | |
| > GET /sdb4/47/AUTH_test/container-6fb8e61f-f131-4037-9219-83c400ba81e7 HTTP/1.1 | |
| > Host: 127.0.0.4:6041 | |
| > User-Agent: curl/7.68.0 | |
| > Accept: */* | |
| > | |
| * Mark bundle as not supporting multiuse |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import errno | |
| from argparse import ArgumentParser | |
| from collections import defaultdict | |
| import pickle | |
| import logging | |
| try: | |
| import thread |