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

Gallopsled / pwntools / 5190673800

pending completion
5190673800

Pull #2205

github-actions

web-flow
Merge 38675c90e into c72886a9b
Pull Request #2205: Fix stable Python 2 installation from a built wheel

3936 of 6604 branches covered (59.6%)

12074 of 16876 relevant lines covered (71.55%)

0.72 hits per line

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

73.33
/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

© 2025 Coveralls, Inc