Tags: Flimm/python-humanfriendly
Tags
Remove undocumented .strip() from join_lines() Why I noticed this: It has the potential to eat significant white space in usage messages that are marked up in reStructuredText syntax. Why I decided to change it: The behavior isn't documented and on second thought I wouldn't expect a function called join_lines() to strip any and all leading/trailing white space.
Unbreak conditional importlib dependency* * https://travis-ci.org/xolox/python-humanfriendly/builds/110585766 Kind of strange that everything worked fine locally. Then again, I've never used wheel compatible conditional dependencies before so of course my first attempt was bound to fail in same way :-s.
Make conditional importlib dependency compatible with wheels* While running tox tests of another project of mine that uses the humanfriendly package I noticed a traceback when importing the humanfriendly package (because importlib was missing). After some digging I found that tox uses pip to install packages and pip converts source distributions to wheel distributions before/during installation, thereby dropping the conditional importlib dependency.
PreviousNext