Jason Madden

Results 153 comments of Jason Madden

Confirmed this is still a problem in Cython 3.0a11/CPython 3.11rc2. Trivial reproducer: ```console # cython —version Cython version 3.0.0a11 # cat bad.py def init(): print('init') init() # cython bad.py #...

I'm so sorry, I completely missed that fact. (It's a little easier to overlook in the generated files, which is what I was looking at, where there are a lot...

The last call including gevent code is this one (name mangling prefix removed and otherwise shortened): ``` #11 …...Greenlet__Greenlet__free (__pyx_v_self=__pyx_v_self@entry=0x...) at greenlet.c:14915 ``` i.e., `Greenlet.__free()`. The context around line 14915...

@pablogsal >> My guess is that greenlet is doing something weird switching states in the middle of a trashcan run into sone arbitrary code that also calls the trashcan, which...

At first I didn't understand what the expected output was. I thought you wanted buildout to suppress the warnings emitted from pip/setuptools/pkg_resources. But the important bit of context missing was...

The short answer is that buildout doesn't *directly* support that. However, there may be workarounds depending on your specific scenario. For full details see #144 and #285 .

Potentially related? There's recently been a new release of appdirs. [I ran into problems](https://travis-ci.org/gevent/gevent/jobs/209008501#L234) installing it yesterday in the gevent build farm because the *previous* version had invalid metadata and...

The buildout in #406 that reproduces this is eye-watteringly complex. Maybe @ggkitsas (from #414) has a simpler starting example?

Ping @ggkitsas, just in case they can provide a simpler starting example?

So far I can't reproduce a problem in the repo @hvelarde pointed to. Steps: 1) Create a new temporary virtualenv with python 2.7 2) install zc.buildout 2.10.0 3) clone the...