I wondered if it was something like that. Thanks!

Fortunately the particular codebase I’m working on doesn’t depend on the more 
interesting features of Nevow, so it shouldn’t be too hard to convert.

Peter.

On Tue, 12 Jul 2022, at 00:51, Glyph wrote:
> Hi Peter,
> 
>> On Jul 8, 2022, at 10:20 AM, Peter Westlake <[email protected]> wrote:
>> 
>> I notice that Nevow is now available from pypi.org, but has a syntax error 
>> when imported:
> 
> When you say "now available" you mean like, "since 2004" :-) ?
>> 
>> Python 3.6.8 (default, Nov 16 2020, 16:55:22) 
>> [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux
>> Type "help", "copyright", "credits" or "license" for more information.
>> >>> import nevow
>> Traceback (most recent call last):
>>   File "<stdin>", line 1, in <module>
>>   File 
>> "/usr/local/runbench3.6/lib/python3.6/site-packages/nevow/__init__.py", line 
>> 73, in <module>
>>     from nevow import flat
>>   File 
>> "/usr/local/runbench3.6/lib/python3.6/site-packages/nevow/flat/__init__.py", 
>> line 7, in <module>
>>     from nevow.flat.ten import flatten, precompile, iterflatten, 
>> getSerializer, serialize, registerFlattener, getFlattener, partialflatten
>>   File 
>> "/usr/local/runbench3.6/lib/python3.6/site-packages/nevow/flat/ten.py", line 
>> 13, in <module>
>>     from nevow import tags
>>   File "/usr/local/runbench3.6/lib/python3.6/site-packages/nevow/tags.py", 
>> line 28, in <module>
>>     from nevow.stan import Proto, Tag, directive, raw, xml, CommentProto, 
>> invisible, slot, cdata
>>   File "/usr/local/runbench3.6/lib/python3.6/site-packages/nevow/stan.py", 
>> line 150
>>     raise NotImplementedError, "Stan slot instances are not iterable."
>>                              ^
>> SyntaxError: invalid syntax
>> 
>> That isn't valid Python 3, so how come Nevow is installable?
> 
> In brief, the metadata that let you say "not for python 3" postdates python 3 
> itself, so the relatively old releases (even the most recent one being almost 
> 3 years at this point) do not have that metadata set and never will, given 
> that they're immutable.  You could do a new release that wasn't installable 
> (and maybe we even did?) but then pip will just fall back to the older ones 
> unless we yank them.
> 
>> Are there any plans to fix it?
> 
> Not currently; twisted.web.template mostly does what was actually unique to 
> Nevow (allow you to render a web page with a Deferred in the middle of it) 
> and is much more compact, well tested, up-to-date and so on.
> 
> However, there are clearly still things still using Nevow out there and if 
> you wanted to bring it into the modern era, ideally while unifying it 
> somewhat with t. <http://t.tw/>w.t to reduce duplication and make the 
> migration easier, I'm sure you could muster some enthusiasm for code reviews 
> and releases if you posted some gentle encouragements to this list.
> 
> We should probably archive the project and mark it as officially unmaintained 
> *or* actually do this update within the next year though; leaving it like 
> this forever is a little rude to new potential users who might waste time on 
> it if they run across it somehow.
> 
> -g
> 
>> Thanks,
>> 
>> Peter.
>> 
>> _______________________________________________
>> Twisted-web mailing list -- [email protected]
>> To unsubscribe send an email to [email protected]
>> https://mail.python.org/mailman3/lists/twisted-web.python.org/
>> Message archived at 
>> https://mail.python.org/archives/list/[email protected]/message/HZ3VAYLFS476G6NWP4ZOXVXC6BRUQGBJ/
>> Code of Conduct: https://twisted.org/conduct
> 
> _______________________________________________
> Twisted-web mailing list -- [email protected]
> To unsubscribe send an email to [email protected]
> https://mail.python.org/mailman3/lists/twisted-web.python.org/
> Message archived at 
> https://mail.python.org/archives/list/[email protected]/message/S36TEJX4D7BKPZIHJEYV77KHHDECGF2Z/
> Code of Conduct: https://twisted.org/conduct
> 
_______________________________________________
Twisted-web mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/twisted-web.python.org/
Message archived at 
https://mail.python.org/archives/list/[email protected]/message/VSAX4DJ7YNUOKTB722LAIMQ4VQGJ2PZN/
Code of Conduct: https://twisted.org/conduct

Reply via email to