[python-committers] [RELEASED] Python 3.4.8rc1 and Python 3.5.5rc1 are now available

2018-01-23 Thread Larry Hastings
On behalf of the Python development community, I'm pleased to announce the availability of Python 3.4.8rc1 and Python 3.5.5rc1. Both Python 3.4 and 3.5 are in "security fixes only" mode. Both versions only accept security fixes, not conventional bug fixes, and both releases are source-only.

Re: [python-committers] Official way to check out a tag?

2018-01-23 Thread Victor Stinner
2018-01-23 11:29 GMT+01:00 Antoine Pitrou : > Did you try "make distclean"? Oh by the way, it took me year to discover the cool *builtin* Git function: * "git clean -ndx" shows all untracked files and directories * "git clean -fdx" removes all untracked files and directories BE CAREFUL: "git cle

Re: [python-committers] Official way to check out a tag?

2018-01-23 Thread Stefan Krah
On Tue, Jan 23, 2018 at 11:29:49AM +0100, Antoine Pitrou wrote: > > This just worked in mercurial, but doing the above results in a > > compile error: > > > >threadmodule.c:1355: multiple definition of `PyInit__thread' > > Did you try "make distclean"? Thanks, that works! I assumed that I m

Re: [python-committers] Official way to check out a tag?

2018-01-23 Thread Antoine Pitrou
Le 23/01/2018 à 11:28, Stefan Krah a écrit : > > Hello, > > what is the official way to checkout a tag for debugging? I did: > >git checkout v3.6.0 > > > This just worked in mercurial, but doing the above results in a > compile error: > >threadmodule.c:1355: multiple definition of `

[python-committers] Official way to check out a tag?

2018-01-23 Thread Stefan Krah
Hello, what is the official way to checkout a tag for debugging? I did: git checkout v3.6.0 This just worked in mercurial, but doing the above results in a compile error: threadmodule.c:1355: multiple definition of `PyInit__thread' Stefan Krah ___