summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-03-14 21:23:12 -0700
committerGuido van Rossum <guido@python.org>2014-03-14 21:23:12 -0700
commit36ddef2a6ee5bfc8f2098649a9d8b35fdcfb5df8 (patch)
tree478dda6cfedee50db7b28c6d9bc94c1ed4e24563 /README
parent332de727c851b23611c88a9176270bb8a16fa128 (diff)
downloadtrollius-36ddef2a6ee5bfc8f2098649a9d8b35fdcfb5df8.tar.gz
Back out inplace default for build_ext. See issue #116.
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 1150baf..34812e0 100644
--- a/README
+++ b/README
@@ -20,10 +20,10 @@ To run coverage (coverage package is required):
On Windows, things are a little more complicated. Assume 'P' is your
Python binary (for example C:\Python33\python.exe).
-You must first build the _overlapped.pyd extension (it will be placed
-in the asyncio directory):
+You must first build the _overlapped.pyd extension and have it placed
+in the asyncio directory, as follows:
- C> P setup.py build_ext
+ C> P setup.py build_ext --inplace
Then you can run the tests as follows: