New submission from Noah Steinberg :
Noticed while debugging a problem with a test running on Windows 10 x86 that
sizeof(wintypes.SIZE)==8 when I believe it should be 4. While using
kernel32.CreateRemoteThread.argtypes = [wintypes.HANDLE, wintypes.LPCVOID,
wintypes.DWORD, wintypes.LPCVOID
New submission from Noah May :
Whether this is considered a bug or not is subjective. The question is should
callable(Tuple) return True or False? Or should it for any other annotation
object?
The reason it returns true in the first place is because of a warning to
explicitly NOT call them
Noah Massman-Hall added the comment:
I ended up doing exactly what I said would probably be needed, and wrote a
small sphinx extension that handles this. I kept the same reST substitution
syntax, but I'm parsing for '|ucd_version|' as the source files are read in and
just re
Change by Noah Massman-Hall :
--
pull_requests: +17186
pull_request: https://github.com/python/cpython/pull/17748
___
Python tracker
<https://bugs.python.org/issue22
Change by Noah Massman-Hall :
--
pull_requests: -17155
___
Python tracker
<https://bugs.python.org/issue22593>
___
___
Python-bugs-list mailing list
Unsub
Change by Noah Massman-Hall :
--
keywords: +patch
pull_requests: +17155
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/17710
___
Python tracker
<https://bugs.python.org/issu
Noah Massman-Hall added the comment:
I took a crack at the rst side of this, to see if I could reduce it to just one
easy to parse for line in each file that needs to be modified.
Yeah, not so easy.
Substituting text in rst isn't hard, you just insert '|ucd_version|' whe
Change by Noah :
--
keywords: +patch
pull_requests: +17126
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/17658
___
Python tracker
<https://bugs.python.org/issu
Noah added the comment:
I'm not sure if this will actually appear as a message (I just registered for
the bug tracker and I'm not sure how it works), but I wrote the gist and I can
definitely make a PR.
--
nosy: +coolreader18
___
Pyth
Noah added the comment:
I subscribed and emailed python-id...@python.org but it still hasn't passed
moderation I guess, hmm
--
___
Python tracker
<https://bugs.python.org/is
Noah added the comment:
Yes, I'm piping a large amount of data to/from a fairly long-running subprocess.
--
___
Python tracker
<https://bugs.python.org/is
New submission from Noah :
Suggesting option to raise exception if process exits nonzero in `with
subprocess.Popen(...):`
with subprocess.Popen('/bin/false'):
pass
I made the mistake of assuming this construct would raise an exception
(CalledProcessError). It would be nice if
noah added the comment:
I was able to recreate the 'bad' output on Linux using 'bad' input.
The issue is caused when you misspell WHERE, regex is looking for the exact
word "WHERE", any lowercase (where), multicase (WHeRe), or misspelling (WERE)
is going to c
Noah Haasis added the comment:
I don‘t have the time right now. Feel free to work on it!
--
___
Python tracker
<https://bugs.python.org/issue21314>
___
___
Pytho
noah added the comment:
Is this a feature request? Because it doesn't look like a bug to me. Where
NoReturn is defined it says it's supposed to fail in static type checkers.
Anyway, I'm not entirely sure on the whole process of contributing but here
goes:
The code ulti
Change by noah :
--
keywords: +patch
pull_requests: +9136
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue34921>
___
___
Python-
Noah Haasis added the comment:
Can I work on this?
--
nosy: +noah.haasis
___
Python tracker
<https://bugs.python.org/issue21314>
___
___
Python-bugs-list mailin
New submission from Noah Haasis :
Pressing the tab key in the python REPL in my command line (cmder on windows 10
32bit) causes an exception:
>>> Readline inter
Noah Haasis added the comment:
This are all the classes where the keywords are missing in the docs and their
missing keywords:
TopLevel
['padx', 'pady']
Checkbutton
['compound', 'offrelief', 'overrelief', 'tristateimage', '
Change by Noah Haasis :
--
keywords: +patch
pull_requests: +7909
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Noah Haasis added the comment:
This is a list of all valid keywordarguments of Listbox.__init__() listed in
the test file:
'activestyle', 'background', 'borderwidth', 'cursor',
'disabledforeground', 'exportselection',
'font
Noah Haasis added the comment:
I'd like to work on this, if it's ok for everybody.
--
nosy: +noah.haasis
___
Python tracker
<https://bugs.python.o
Change by Noah Haasis :
--
keywords: +patch
pull_requests: +7300
stage: needs patch -> patch review
___
Python tracker
<https://bugs.python.org/issu
Noah Simon added the comment:
Actually, you wouldn't even need to import asyncio.
--
___
Python tracker
<https://bugs.python.org/issue33447>
___
___
Pytho
New submission from Noah Simon :
It would be very useful to add an asynchronous lambda syntax, as a shortcut for
coroutines. I'm not experienced enough to write a PEP or edit the C source, but
I have some ideas for syntax:
import asyncio
foo = async lambda a,b: 5 + await
Changes by Noah Levitt :
Added file: http://bugs.python.org/file46943/issue30593-test.diff
___
Python tracker
<http://bugs.python.org/issue30593>
___
___
Python-bug
Noah Levitt added the comment:
And here's a fix.
Unfortunately I think the change could break people's scripts. If they have
isolation_level set (not None) and use executescript(), they will have to issue
an explicit call to connection.commit().
executescript() could do the com
Noah Levitt added the comment:
Here's a test case
--
___
Python tracker
<http://bugs.python.org/issue30593>
___
___
Python-bugs-list mailing list
Unsubscr
New submission from Noah Levitt:
As far as I can tell, sqlite3 executescript() does not respect isolation_level.
Is that true? If so, I think it's worth mentioning in the doc. Or maybe it
should respect isolation_level, not sure there's any particular reason not to.
--
New submission from Noah Petherbridge:
I found a bug in Python 3.6.0a2 that wasn't present on previous versions of
Python concerning the "\d" escape sequence as used in the following regular
expression:
import re
s = "hello"
s = re.sub(re.escape(r'(\d+?)'
New submission from Noah Yetter:
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
The docs claim that "multiprocessing.dummy replicates the
New submission from Noah Kantrowitz :
If a prefix is passed to translate_pattern it will generate a pattern using the
unescaped output of os.path.join(). This is fine on *nix, but on Windows it
results in a pattern like r'build\.*', which matches any string starting with
"bui
New submission from Noah Gift <[EMAIL PROTECTED]>:
Just an FYI, the Mac Build script in:
Python-2.6 2/Mac/BuildScript/build-installer.py
contains broken download URLs for SQLite, and cause the build to fail.
I fixed this myself, but noticed this appears to be fixed in the trunk,
a
New submission from Noah Kantrowitz <[EMAIL PROTECTED]>:
The normal ReST sidebar directive creates a div with the same class as the
HTML sidebar. This makes it not render its contents correctly. Perhaps the
default template/CSS should match on div#sphinxsidebar or similar?
--
as
Changes by Noah Kantrowitz <[EMAIL PROTECTED]>:
--
nosy: +coderanger
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2321>
__
___
Python-bugs
New submission from Noah Gift:
Compile problem on:
System Software Overview:
System Version: Mac OS X 10.5 (9A527)
Kernel Version: Darwin 9.0.0b5
Temporary Fix was to go into Modules/posixmodule.c
and at line: 3767
Take out function and create empty function.
I was then
Changes by Noah Gift:
--
components: Tests
severity: major
status: open
title: OS X 10.5.x Build Problems
type: compile error
versions: Python 3.0
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/
37 matches
Mail list logo