• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Gallopsled / pwntools / 12797806857

15 Jan 2025 10:04PM UTC coverage: 71.089% (-2.6%) from 73.646%
12797806857

push

github

peace-maker
Drop Python 2.7 support / Require Python 3.10

Only test on Python 3 and bump minimal required python version to 3.10.

3628 of 6402 branches covered (56.67%)

12848 of 18073 relevant lines covered (71.09%)

0.71 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

76.92
/pwnlib/filesystem/path.py
1
import six
1✔
2
import tempfile
1✔
3

4
if six.PY3:
1!
5
    from pathlib import *
1✔
6
else:
7
    from pathlib2 import *
×
8

9
@classmethod
1✔
10
def mktemp(cls):
1✔
11
    return cls(tempfile.mktemp())
×
12

13
@classmethod
1✔
14
def mkdtemp(cls):
1✔
15
    return cls(tempfile.mkdtemp())
×
16

17
Path.mktemp = mktemp
1✔
18
Path.mkdtemp = mkdtemp
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc