Skip to content

Commit 04b2491

Browse files
committed
Merge branch 'master' of github.com:vmprof/vmprof-python
2 parents 2d28830 + 8cac8ec commit 04b2491

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

docs/jitlog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following commands show example usages::
2525
# upload a jitlog when your program segfaults/crashes
2626
$ pypy -m jitlog -o /tmp/file.log <program.py> <arguments>
2727
<Segfault>
28-
$ pypy -m jitlog.upload /tmp/file.log
28+
$ pypy -m jitlog --upload /tmp/file.log
2929

3030
Data sent
3131
=========

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from setuptools import setup, find_packages, Extension
22
import os, sys
33

4-
PY3 = sys.version_info[0] >= 3
54
IS_PYPY = '__pypy__' in sys.builtin_module_names
65

76
if IS_PYPY:
@@ -24,7 +23,7 @@
2423
extra_compile_args=extra_compile_args,
2524
libraries=[])]
2625

27-
if PY3:
26+
if sys.version_info[:2] >= (3, 3):
2827
extra_install_requires = []
2928
else:
3029
extra_install_requires = ["backports.shutil_which"]

src/vmprof_main_win32.h

100755100644
File mode changed.

0 commit comments

Comments
 (0)