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

Gallopsled / pwntools / 8912ca5a8c3a9725c3ba6d30561607150a6faebe-PR-2205

pending completion
8912ca5a8c3a9725c3ba6d30561607150a6faebe-PR-2205

Pull #2205

github-actions

web-flow
Merge 81f463e2c into 8b4cacf8b
Pull Request #2205: Fix stable Python 2 installation from a built wheel

3878 of 6371 branches covered (60.87%)

12199 of 16604 relevant lines covered (73.47%)

0.73 hits per line

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

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

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

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

13
@classmethod
1✔
14
def mkdtemp(cls):
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