Showing results for April 2016 - Python

Apr 26, 2016
0
1

Using CPython’s Embeddable Zip File

Steve Dower
Steve Dower

On the download page for CPython 3.5.1, you'll see a wide range of options. Not all of these are well explained, especially for Windows users who have seven (seven!) choices. Let me restructure the Windows items into a more feature-focused table: As is fairly common with installers these days, you have the choice to download everything in ...

cpython
Apr 18, 2016
0
0

Idiomatic Python: boolean expressions

Brett Cannon
Brett Cannon

You might think that boolean expressions -- most frequently used as conditional guards which are the the bit of code that tests whether an or statement should execute -- are a fairly straight-forward concept and that there isn't really anything subtle to them at all. And while the general concept is simple, there are some idiomatic practices to ...

code-styleidioms
Apr 11, 2016
2
0

How to deal with the pain of “unable to find vcvarsall.bat”

Steve Dower
Steve Dower

Python's packaging ecosystem is one of its biggest strengths, but Windows users are often frustrated by packages that do not install properly. One of the most common errors you'll see is this one: As far as errors go, "unable to find vcvarsall.bat" is not the most helpful. What is this mythical batch file? Why do I need it? Where can I get it? ...

cpython