GHC 2017-10-01

4 comments.

, https://git.io/vdnu5 in crsmithdev/arrow
Hmm, how do I bring coverage to 100% when there's a branching based on feature availability?

, https://git.io/vdnEU in crsmithdev/arrow
Support microsecond precision timestamp on Python 3.3+
======================================================

Previous implementation of `arrow.Arrow.timestamp()` has precision of a second, since `datetime.datetime.utctimetuple()` returns a `time.struct_time` which doesn't even have a microsecond field.

In this commit, we switch to [`datetime.datetime.timestamp()`][1], available on Python 3.3 or later, which supports microsecond precision.

By the way I'm using `hasattr` for feature test now. Not sure if you prefer try...except-styled feature test.

[1]: https://docs.python.org/3/library/datetime.html#datetime.datetime.timestamp

, https://git.io/vdnka in Homebrew/homebrew-core
youtube-dl 2017.10.01
=====================

Created with `brew bump-formula-pr`.

---

<img src="https://i.imgur.com/SZpFCYT.png" width="64" height="40">

, https://git.io/vdnJ2 in jarun/googler
Python is function-scoped for the most part, and names in a statement are not resolved until that statement is executed, so yes.