[issue46963] Deep Lazy Imports - Interpreter-level deferred module loading

2022-03-15 Thread Zsolt Dollenstein


Change by Zsolt Dollenstein :


--
nosy: +zsol

___
Python tracker 
<https://bugs.python.org/issue46963>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue46290] Parameter names are inaccurate in dataclasses docs

2022-01-07 Thread Zsolt Dollenstein


Change by Zsolt Dollenstein :


--
keywords: +patch
pull_requests: +28655
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/30450

___
Python tracker 
<https://bugs.python.org/issue46290>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue46290] Parameter names are inaccurate in dataclasses docs

2022-01-07 Thread Zsolt Dollenstein


New submission from Zsolt Dollenstein :

Parameter names for `asdict`, `astuple`, `is_dataclass`, and `replace` are 
incorrect in the docs. The first parameter for all these is `obj`.

--
assignee: docs@python
components: Documentation
messages: 409957
nosy: docs@python, zsol
priority: normal
severity: normal
status: open
title: Parameter names are inaccurate in dataclasses docs
versions: Python 3.10, Python 3.11, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue46290>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue39613] IsolatedAsyncioTestCase closes default event loop

2020-02-12 Thread Zsolt Dollenstein


Change by Zsolt Dollenstein :


--
nosy: +zsol

___
Python tracker 
<https://bugs.python.org/issue39613>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33363] async for statement is not a syntax error in sync context

2018-04-27 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
pull_requests: +6315

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33363>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33363] async for statement is not a syntax error in sync context

2018-04-26 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
keywords: +patch
pull_requests: +6312
stage:  -> patch review

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33363>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33363] async for statement is not a syntax error in sync context

2018-04-25 Thread Zsolt Dollenstein

New submission from Zsolt Dollenstein <zsol.z...@gmail.com>:

Since 3.7, async generators can be used in non-async functions. The way this is 
implemented allows the following to be valid syntax:

def f():
async for i in aiterable:
pass
return 1

The return value of the above function is a Future that will never be done().

--
components: Interpreter Core
messages: 315775
nosy: zsol
priority: normal
severity: normal
status: open
title: async for statement is not a syntax error in sync context
type: behavior
versions: Python 3.7, Python 3.8

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33363>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33337] Provide a supported Concrete Syntax Tree implementation in the standard library

2018-04-24 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
nosy: +zsol

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue7>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33349] 2to3 fails to parse async generators in non-async functions

2018-04-24 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
keywords: +patch
pull_requests: +6288
stage:  -> patch review

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33349>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33266] 2to3 doesn't parse all valid string literals

2018-04-24 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33266>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33349] 2to3 fails to parse async generators in non-async functions

2018-04-24 Thread Zsolt Dollenstein

New submission from Zsolt Dollenstein <zsol.z...@gmail.com>:

This is valid since python3.7:

```
def f():
return (i * 2 async for i in arange(42))
```

but lib2to3 doesn't parse this properly, because `async` is tokenized as a 
`NAME` instead of `ASYNC`

--
components: 2to3 (2.x to 3.x conversion tool)
messages: 315700
nosy: zsol
priority: normal
severity: normal
status: open
title: 2to3 fails to parse async generators in non-async functions
type: behavior
versions: Python 3.7, Python 3.8

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33349>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33348] lib2to3 doesn't parse f(*[] or [])

2018-04-24 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
keywords: +patch
pull_requests: +6286
stage:  -> patch review

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33348>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33348] lib2to3 doesn't parse f(*[] or [])

2018-04-24 Thread Zsolt Dollenstein

Change by Zsolt Dollenstein <zsol.z...@gmail.com>:


--
components: 2to3 (2.x to 3.x conversion tool)
nosy: zsol
priority: normal
severity: normal
status: open
title: lib2to3 doesn't parse f(*[] or [])
type: behavior

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33348>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33266] 2to3 doesn't parse all valid string literals

2018-04-12 Thread Zsolt Dollenstein

New submission from Zsolt Dollenstein <zsol.z...@gmail.com>:

For example `rf"blah"` is not tokenized properly.

--
components: 2to3 (2.x to 3.x conversion tool)
messages: 315215
nosy: Zsolt Dollenstein
priority: normal
severity: normal
status: open
title: 2to3 doesn't parse all valid string literals
type: behavior

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33266>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com