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.
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
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
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 `
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
___