Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vmprof/vmprof-python
Browse files Browse the repository at this point in the history
  • Loading branch information
planrich committed Oct 12, 2016
2 parents 2d28830 + 8cac8ec commit 04b2491
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/jitlog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The following commands show example usages::
# upload a jitlog when your program segfaults/crashes
$ pypy -m jitlog -o /tmp/file.log <program.py> <arguments>
<Segfault>
$ pypy -m jitlog.upload /tmp/file.log
$ pypy -m jitlog --upload /tmp/file.log

Data sent
=========
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from setuptools import setup, find_packages, Extension
import os, sys

PY3 = sys.version_info[0] >= 3
IS_PYPY = '__pypy__' in sys.builtin_module_names

if IS_PYPY:
Expand All @@ -24,7 +23,7 @@
extra_compile_args=extra_compile_args,
libraries=[])]

if PY3:
if sys.version_info[:2] >= (3, 3):
extra_install_requires = []
else:
extra_install_requires = ["backports.shutil_which"]
Expand Down
Empty file modified src/vmprof_main_win32.h
100755 → 100644
Empty file.

0 comments on commit 04b2491

Please sign in to comment.