Skip to content

Bump virtualenv from 20.33.1 to 20.34.0 #11428

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

Merged
merged 1 commit into from
Aug 14, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2025

Bumps virtualenv from 20.33.1 to 20.34.0.

Release notes

Sourced from virtualenv's releases.

20.34.0

What's Changed

Full Changelog: pypa/virtualenv@20.33.1...20.34.0

Changelog

Sourced from virtualenv's changelog.

v20.34.0 (2025-08-13)

Features - 20.34.0

- Abstract out caching in discovery - by :user:`esafak`.
  Decouple `FileCache` from `py_info` (discovery) - by :user:`esafak`.
  Remove references to py_info in FileCache - by :user:`esafak`.
  Decouple discovery from creator plugins - by :user:`esafak`.
  Decouple discovery by duplicating info utils - by :user:`esafak`. (:issue:`2074`)
- Add PyPy 3.11 support. Contributed by :user:`esafak`. (:issue:`2932`)

Bugfixes - 20.34.0

  • Upgrade embedded wheel pip to 25.2 from 25.1.1 - by :user:gaborbernat. (:issue:2333)
  • Accept RuntimeError in test_too_many_open_files, by :user:esafak (:issue:2935)
  • Python in PATH takes precedence over uv-managed python. Contributed by :user:edgarrmondragon. (:issue:2952)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [virtualenv](https://github.com/pypa/virtualenv) from 20.33.1 to 20.34.0.
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.33.1...20.34.0)

---
updated-dependencies:
- dependency-name: virtualenv
  dependency-version: 20.34.0
  dependency-type: indirect
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 14, 2025
@dependabot dependabot bot requested review from webknjaz and asvetlov as code owners August 14, 2025 10:36
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 14, 2025
@github-actions github-actions bot enabled auto-merge (squash) August 14, 2025 10:36
Copy link

codecov bot commented Aug 14, 2025

❌ 2 Tests Failed:

Tests completed Failed Passed Skipped
4159 2 4157 112
View the full list of 2 ❄️ flaky tests
tests.test_cookiejar::test_pickle_format

Flake rate in main: 5.13% (Passed 148 times, Failed 8 times)

Stack Traces | 0.189s run time
cookies_to_send = <SimpleCookie: different-domain-cookie='sixth' domain-cookie='second' dotted-domain-cookie='fifth' expires-cookie='thi...h4-cookie='twelfth' secure-cookie='seventh' shared-cookie='first' subdomain1-cookie='third' subdomain2-cookie='fourth'>

    #x1B[0m#x1B[94mdef#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[92mtest_pickle_format#x1B[39;49;00m(cookies_to_send: SimpleCookie) -> #x1B[94mNone#x1B[39;49;00m:#x1B[90m#x1B[39;49;00m
    #x1B[90m    #x1B[39;49;00m#x1B[33m"""Test if cookiejar pickle format breaks.#x1B[39;49;00m
    #x1B[33m#x1B[39;49;00m
    #x1B[33m    If this test fails, it may indicate that saved cookiejars will stop working.#x1B[39;49;00m
    #x1B[33m    If that happens then:#x1B[39;49;00m
    #x1B[33m        1. Avoid releasing the change in a bugfix release.#x1B[39;49;00m
    #x1B[33m        2. Try to include a migration script in the release notes (example below).#x1B[39;49;00m
    #x1B[33m        3. Use dump_cookiejar() at the top of this file to update `pickled`.#x1B[39;49;00m
    #x1B[33m#x1B[39;49;00m
    #x1B[33m    Depending on the changes made, a migration script might look like:#x1B[39;49;00m
    #x1B[33m        import pickle#x1B[39;49;00m
    #x1B[33m        with file_path.open("rb") as f:#x1B[39;49;00m
    #x1B[33m            cookies = pickle.load(f)#x1B[39;49;00m
    #x1B[33m#x1B[39;49;00m
    #x1B[33m        morsels = [(name, m) for c in cookies.values() for name, m in c.items()]#x1B[39;49;00m
    #x1B[33m        cookies.clear()#x1B[39;49;00m
    #x1B[33m        for name, m in morsels:#x1B[39;49;00m
    #x1B[33m            cookies[(m["domain"], m["path"])][name] = m#x1B[39;49;00m
    #x1B[33m#x1B[39;49;00m
    #x1B[33m        with file_path.open("wb") as f:#x1B[39;49;00m
    #x1B[33m            pickle.dump(cookies, f, pickle.HIGHEST_PROTOCOL)#x1B[39;49;00m
    #x1B[33m    """#x1B[39;49;00m#x1B[90m#x1B[39;49;00m
        pickled = #x1B[33mb#x1B[39;49;00m#x1B[33m"#x1B[39;49;00m#x1B[33m\x80#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33m\x95#x1B[39;49;00m#x1B[33m\xc8#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33mcollections#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33mdefaultdict#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x93#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mhttp.cookies#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mSimpleCookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x93#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x85#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mR#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33mshared-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x03#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mMorsel#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x93#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x01#x1B[39;49;00m#x1B[33m/#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x03#x1B[39;49;00m#x1B[33mkey#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mvalue#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mfirst#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33mcoded_value#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1c#x1B[39;49;00m#x1B[33mubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33mexample.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33mdomain-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1e#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh!h#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecond#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh-ub#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x14#x1B[39;49;00m#x1B[33mdotted-domain-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0b#x1B[39;49;00m#x1B[33mexample.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh.h#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mfifth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh;ubu#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33mtest1.example.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33msubdomain1-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh<#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh?h#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mthird#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mhKubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33mtest2.example.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33msubdomain2-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mhL#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mhOh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mfourth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh[ubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33mdifferent.org#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x17#x1B[39;49;00m#x1B[33mdifferent-domain-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\\#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh_h#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33msixth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mhkubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\n#x1B[39;49;00m#x1B[33msecure.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33msecure-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mhl#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x88#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mhoh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mseventh#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m{#x1B[39;49;00m#x1B[33mubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0e#x1B[39;49;00m#x1B[33mno-path-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh|#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x7f#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33meighth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x8b#x1B[39;49;00m#x1B[33mub#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpath1-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mninth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x99#x1B[39;49;00m#x1B[33mubu#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33m/one#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpath2-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x9b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x9a#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x9e#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33mtenth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xaa#x1B[39;49;00m#x1B[33mubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m/one/two#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpath3-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xac#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xab#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xaf#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33meleventh#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xbb#x1B[39;49;00m#x1B[33mub#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpath4-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\t#x1B[39;49;00m#x1B[33m/one/two/#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0c#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xbc#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mtwelfth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xca#x1B[39;49;00m#x1B[33mubu#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0f#x1B[39;49;00m#x1B[33mexpirestest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0e#x1B[39;49;00m#x1B[33mexpires-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x1c#x1B[39;49;00m#x1B[33mTue, 1 Jan 2999 12:00:00 GMT#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xcb#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xce#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\n#x1B[39;49;00m#x1B[33mthirteenth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xdb#x1B[39;49;00m#x1B[33mubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0e#x1B[39;49;00m#x1B[33mmaxagetest.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x0e#x1B[39;49;00m#x1B[33mmax-age-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xdc#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x02#x1B[39;49;00m#x1B[33m60#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xdf#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\n#x1B[39;49;00m#x1B[33mfourteenth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xec#x1B[39;49;00m#x1B[33mubs#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x12#x1B[39;49;00m#x1B[33minvalid-values.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x86#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x05#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x16#x1B[39;49;00m#x1B[33minvalid-max-age-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xed#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xf0#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\t#x1B[39;49;00m#x1B[33mfifteenth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xfc#x1B[39;49;00m#x1B[33mub#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x16#x1B[39;49;00m#x1B[33minvalid-expires-cookie#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\r#x1B[39;49;00m#x1B[33m)#x1B[39;49;00m#x1B[33m\x81#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mexpires#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x04#x1B[39;49;00m#x1B[33mpath#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x11#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mcomment#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33mdomain#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x12#x1B[39;49;00m#x1B[33minvalid-values.com#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mmax-age#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x06#x1B[39;49;00m#x1B[33msecure#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mhttponly#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x07#x1B[39;49;00m#x1B[33mversion#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33msamesite#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x08#x1B[39;49;00m#x1B[33mu}#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33m(h#x1B[39;49;00m#x1B[33m\x1a#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\xfd#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1b#x1B[39;49;00m#x1B[33m\x8c#x1B[39;49;00m#x1B[33m\t#x1B[39;49;00m#x1B[33msixteenth#x1B[39;49;00m#x1B[33m\x94#x1B[39;49;00m#x1B[33mh#x1B[39;49;00m#x1B[33m\x1d#x1B[39;49;00m#x1B[33mj#x1B[39;49;00m#x1B[33m\n#x1B[39;49;00m#x1B[33m\x01#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33m\x00#x1B[39;49;00m#x1B[33mubuu.#x1B[39;49;00m#x1B[33m"#x1B[39;49;00m#x1B[90m#x1B[39;49;00m
        cookies = pickle.loads(pickled)#x1B[90m#x1B[39;49;00m
    #x1B[90m#x1B[39;49;00m
        cj = CookieJar()#x1B[90m#x1B[39;49;00m
        cj.update_cookies(cookies_to_send)#x1B[90m#x1B[39;49;00m
    #x1B[90m#x1B[39;49;00m
>       #x1B[94massert#x1B[39;49;00m cookies == cj._cookies#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE       AssertionError: assert defaultdict(<...'fifteenth'>}) == defaultdict(<...'fifteenth'>})#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m
#x1B[1m#x1B[31mE         Differing items:#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mexpirestest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: expires-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mthirteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mexpirestest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: expires-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mthirteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: no-path-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33meighth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m path1-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mninth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: no-path-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33meighth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m path1-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mninth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m/one#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: path2-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mtenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m/one#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: path2-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mtenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: shared-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfirst#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: shared-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfirst#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mmaxagetest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: #x1B[96mmax#x1B[39;49;00m-age-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfourteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mmaxagetest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: #x1B[96mmax#x1B[39;49;00m-age-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfourteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mexample.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msecond#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m dotted-domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfifth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mexample.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msecond#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m dotted-domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfifth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mtest1.example.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: subdomain1-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mthird#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mtest1.example.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: subdomain1-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mthird#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mdifferent.org#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: different-domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msixth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mdifferent.org#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: different-domain-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msixth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33msecure.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: secure-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mseventh#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33msecure.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: secure-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mseventh#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mtest2.example.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: subdomain2-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfourth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mtest2.example.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: subdomain2-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfourth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m/one/two#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: path3-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33meleventh#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m path4-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mtwelfth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33mpathtest.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m/one/two#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: path3-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33meleventh#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m path4-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mtwelfth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33minvalid-values.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: invalid-expires-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msixteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m invalid-#x1B[96mmax#x1B[39;49;00m-age-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfifteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m != #x1B[0m{(#x1B[33m'#x1B[39;49;00m#x1B[33minvalid-values.com#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m, #x1B[33m'#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m): <SimpleCookie: invalid-expires-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33msixteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m invalid-#x1B[96mmax#x1B[39;49;00m-age-cookie=#x1B[33m'#x1B[39;49;00m#x1B[33mfifteenth#x1B[39;49;00m#x1B[33m'#x1B[39;49;00m>}#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m
#x1B[1m#x1B[31mE         Full diff:#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m#x1B[90m #x1B[39;49;00m defaultdict(<class 'http.cookies.SimpleCookie'>, {#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('', ''): <SimpleCookie: shared-cookie='first'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('different.org', ''): <SimpleCookie: different-domain-cookie='sixth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('example.com', ''): <SimpleCookie: domain-cookie='second' dotted-domain-cookie='fifth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('expirestest.com', ''): <SimpleCookie: expires-cookie='thirteenth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('invalid-values.com', ''): <SimpleCookie: invalid-expires-cookie='sixteenth' invalid-max-age-cookie='fifteenth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('maxagetest.com', ''): <SimpleCookie: max-age-cookie='fourteenth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('pathtest.com', ''): <SimpleCookie: no-path-cookie='eighth' path1-cookie='ninth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('pathtest.com', '/one'): <SimpleCookie: path2-cookie='tenth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('pathtest.com', '/one/two'): <SimpleCookie: path3-cookie='eleventh' path4-cookie='twelfth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('secure.com', ''): <SimpleCookie: secure-cookie='seventh'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('test1.example.com', ''): <SimpleCookie: subdomain1-cookie='third'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m     ('test2.example.com', ''): <SimpleCookie: subdomain2-cookie='fourth'>,#x1B[90m#x1B[39;49;00m#x1B[0m
#x1B[1m#x1B[31mE         #x1B[90m #x1B[39;49;00m })#x1B[90m#x1B[39;49;00m#x1B[0m

cj         = <aiohttp.cookiejar.CookieJar object at 0x7f3c959aea80>
cookies    = defaultdict(<class 'http.cookies.SimpleCookie'>, {('', ''): <SimpleCookie: shared-cookie='first'>, ('example.com', '')...'>, ('invalid-values.com', ''): <SimpleCookie: invalid-expires-cookie='sixteenth' invalid-max-age-cookie='fifteenth'>})
cookies_to_send = <SimpleCookie: different-domain-cookie='sixth' domain-cookie='second' dotted-domain-cookie='fifth' expires-cookie='thi...h4-cookie='twelfth' secure-cookie='seventh' shared-cookie='first' subdomain1-cookie='third' subdomain2-cookie='fourth'>
pickled    = b'\x80\x04\x95\xc8\x0b\x00\x00\x00\x00\x00\x00\x8c\x0bcollections\x94\x8c\x0bdefaultdict\x94\x93\x94\x8c\x0chttp.cooki...x08\x8c\x07version\x94h\x08\x8c\x08samesite\x94h\x08u}\x94(h\x1ah\xfdh\x1b\x8c\tsixteenth\x94h\x1dj\n\x01\x00\x00ubuu.'

#x1B[1m#x1B[31mtests/test_cookiejar.py#x1B[0m:1045: AssertionError
tests.test_helpers::test_when_timeout_smaller_second[pyloop]

Flake rate in main: 5.13% (Passed 148 times, Failed 8 times)

Stack Traces | 0.444s run time
loop = <_UnixSelectorEventLoop running=False closed=False debug=False>

    #x1B[0m#x1B[94mdef#x1B[39;49;00m#x1B[90m #x1B[39;49;00m#x1B[92mtest_when_timeout_smaller_second#x1B[39;49;00m(loop: asyncio.AbstractEventLoop) -> #x1B[94mNone#x1B[39;49;00m:#x1B[90m#x1B[39;49;00m
        timeout = #x1B[94m0.1#x1B[39;49;00m#x1B[90m#x1B[39;49;00m
        timer = loop.time() + timeout#x1B[90m#x1B[39;49;00m
    #x1B[90m#x1B[39;49;00m
        handle = helpers.TimeoutHandle(loop, timeout)#x1B[90m#x1B[39;49;00m
        #x1B[94massert#x1B[39;49;00m handle #x1B[95mis#x1B[39;49;00m #x1B[95mnot#x1B[39;49;00m #x1B[94mNone#x1B[39;49;00m#x1B[90m#x1B[39;49;00m
        start_handle = handle.start()#x1B[90m#x1B[39;49;00m
        #x1B[94massert#x1B[39;49;00m start_handle #x1B[95mis#x1B[39;49;00m #x1B[95mnot#x1B[39;49;00m #x1B[94mNone#x1B[39;49;00m#x1B[90m#x1B[39;49;00m
        when = start_handle.when()#x1B[90m#x1B[39;49;00m
        handle.close()#x1B[90m#x1B[39;49;00m
    #x1B[90m#x1B[39;49;00m
        #x1B[94massert#x1B[39;49;00m #x1B[96misinstance#x1B[39;49;00m(when, #x1B[96mfloat#x1B[39;49;00m)#x1B[90m#x1B[39;49;00m
>       #x1B[94massert#x1B[39;49;00m when - timer == pytest.approx(#x1B[94m0#x1B[39;49;00m, #x1B[96mabs#x1B[39;49;00m=#x1B[94m0.001#x1B[39;49;00m)#x1B[90m#x1B[39;49;00m
#x1B[1m#x1B[31mE       assert 0.1397113869999771 == 0 ± 0.001#x1B[0m
#x1B[1m#x1B[31mE         #x1B[0m
#x1B[1m#x1B[31mE         comparison failed#x1B[0m
#x1B[1m#x1B[31mE         Obtained: 0.1397113869999771#x1B[0m
#x1B[1m#x1B[31mE         Expected: 0 ± 0.001#x1B[0m

handle     = <aiohttp.helpers.TimeoutHandle object at 0x7f3c85d2f100>
loop       = <_UnixSelectorEventLoop running=False closed=False debug=False>
start_handle = <TimerHandle when=317.834777313 TimeoutHandle.__call__()>
timeout    = 0.1
timer      = 317.69506592600004
when       = 317.834777313

#x1B[1m#x1B[31mtests/test_helpers.py#x1B[0m:307: AssertionError

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

Copy link

codspeed-hq bot commented Aug 14, 2025

CodSpeed Performance Report

Merging #11428 will not alter performance

Comparing dependabot/pip/virtualenv-20.34.0 (b023f5a) with master (9f9b07c)

Summary

✅ 59 untouched benchmarks

@github-actions github-actions bot merged commit 575caf9 into master Aug 14, 2025
38 of 39 checks passed
@github-actions github-actions bot deleted the dependabot/pip/virtualenv-20.34.0 branch August 14, 2025 10:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants