[issue32810] Expose ags_gen and agt_gen in asynchronous generators

2018-09-19 Thread Keith Dart


Change by Keith Dart :


--
nosy: +kdart

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



[issue26186] LazyLoader rejecting use of SourceFileLoader

2016-01-23 Thread Keith Dart

Changes by Keith Dart <ke...@dartworks.biz>:


--
nosy: +kdart

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



[issue11063] uuid.py module import has heavy side effects

2011-02-05 Thread Keith Dart

Keith Dart ke...@dartworks.biz added the comment:

It's also possible using existing wrapped os system calls. One exaple is here: 
http://code.google.com/p/pycopia/source/browse/trunk/aid/pycopia/ifconfig.py

Although that one doesn't current support MAC addresses, but it could. The 
socket module also now support the netlink socket on Linux, so it shouldbe 
possible to use that for getting MAC address on Linux.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11063
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11063] uuid.py module import has heavy side effects

2011-02-05 Thread Keith Dart

Keith Dart ke...@dartworks.biz added the comment:

I'm thinking Python could use a general purpose ifconfig/mac-layer module that 
uuid.py could then just use.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11063
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11063] uuid.py module import has heavy side effects

2011-01-29 Thread Keith Dart

New submission from Keith Dart keith.d...@gmail.com:

When the uuid.py module is simply imported it has the side effect of forking a 
subprocess (/sbin/ldconfig) and doing a lot of stuff find a uuid implementation 
by ctypes. This is undesirable in many contexts. It would be better to perform 
those tasks on demand, when the first UUID is actually requested. In general, 
imports should avoid unnecessary system call side effects. This also makes 
testing easier.

--
components: Library (Lib)
messages: 127442
nosy: Keith.Dart
priority: normal
severity: normal
status: open
title: uuid.py module import has heavy side effects
type: resource usage
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11063
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11063] uuid.py module import has heavy side effects

2011-01-29 Thread Keith Dart

Changes by Keith Dart keith.d...@gmail.com:


--
nosy: +kdart

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11063
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com