[issue32738] CDLL : Can't fine module

2018-01-31 Thread twinkim2
New submission from twinkim2 : I just try to import ./so created by c language. However , if some c function library is added in c souce code such as "fopen" and "sscanf" related with stdio , runtime error is happend like as below.

[issue32476] Add concat functionality to ElementTree xpath find

2018-01-31 Thread Ned Deily
Ned Deily added the comment: Sorry, I think this qualifies as a new feature and thus needs to go in 3.8. Plus it should get a wider review from those with ET experience. Perhaps @scoder would be willing go take a look. -- nosy: +scoder versions: -Python 3.7 ___

[issue32394] socket lib beahavior change in 3.6.4

2018-01-31 Thread Ma Lin
Ma Lin added the comment: Base on Kamil's code, a little improvements. if hasattr(sys, 'getwindowsversion'): WIN_MAJOR, _, WIN_BUILD, *_ = sys.getwindowsversion() if WIN_MAJOR == 10: if WIN_BUILD >= 15063:# Windows 10 1703 pass elif WIN_BUILD >= 14393:

[issue32394] socket lib beahavior change in 3.6.4

2018-01-31 Thread Steve Dower
Steve Dower added the comment: Nice. Think you can turn that into a pull request on GitHub? -- ___ Python tracker ___ ___ Python-bug

[issue31368] Add os.preadv() and os.pwritev()

2018-01-31 Thread YoSTEALTH
Change by YoSTEALTH : -- pull_requests: +5293 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue31356] Add context manager to temporarily disable GC

2018-01-31 Thread Nick Coghlan
Nick Coghlan added the comment: A useful heuristic is that if something is named with CapWords, then class-like *usage* is explicitly supported (inheritance, isinstance checks, etc). If it's named with snake_case or wordsruntogether, then calling it is OK, but you may run into quirky behaviou

[issue32738] CDLL : Can't find module

2018-01-31 Thread twinkim2
Change by twinkim2 : -- title: CDLL : Can't fine module -> CDLL : Can't find module ___ Python tracker ___ ___ Python-bugs-list maili

[issue32739] collections.deque rotate(n=1) default value not documented

2018-01-31 Thread Yang Yu
New submission from Yang Yu : https://docs.python.org/3/library/collections.html#collections.deque rotate() works the same as rotate(1). The documentation did not mention the default for n. -- assignee: docs@python components: Documentation messages: 311403 nosy: docs@python, yuy prior

[issue32722] Mislabeling of a dict comprehension as a generator expression in the tutorial

2018-01-31 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset ab328756d7fd969ee4882458b07892dff135013c by Xiang Zhang (Stéphane Wirtel) in branch 'master': bpo-32722: Remove useless example in the Classes tutorial (#5446) https://github.com/python/cpython/commit/ab328756d7fd969ee4882458b07892dff135013c -

[issue32722] Mislabeling of a dict comprehension as a generator expression in the tutorial

2018-01-31 Thread Xiang Zhang
Xiang Zhang added the comment: I treat it as an enhancement so only merge it into 3.8. Thanks Soothsayer for the report and Stéphane for the patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7, Python 3.4, Python 3.5, Python 3.6

<    1   2