[issue43170] wintypes.SIZE is 8bytes on 32 bit machines

2021-02-08 Thread Noah Steinberg
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

[issue40298] Type annotation objects (Tuple, List, etc.) register as callable()

2020-04-16 Thread Noah May
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

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-29 Thread Noah Massman-Hall
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 replacing

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-29 Thread Noah Massman-Hall
Change by Noah Massman-Hall : -- pull_requests: +17186 pull_request: https://github.com/python/cpython/pull/17748 ___ Python tracker <https://bugs.python.org/issue22

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-26 Thread Noah Massman-Hall
Change by Noah Massman-Hall : -- pull_requests: -17155 ___ Python tracker <https://bugs.python.org/issue22593> ___ ___ Python-bugs-list mailing list Unsub

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-26 Thread Noah Massman-Hall
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

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-26 Thread Noah Massman-Hall
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|' where the version

[issue39091] CPython Segfault in 5 lines of code

2019-12-18 Thread Noah
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

[issue39091] CPython Segfault in 5 lines of code

2019-12-18 Thread Noah
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 ___ Python tracker

[issue37184] suggesting option to raise exception if process exits nonzero in `with subprocess.Popen(...):`

2019-06-11 Thread Noah
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/issue37

[issue37184] suggesting option to raise exception if process exits nonzero in `with subprocess.Popen(...):`

2019-06-06 Thread Noah
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/issue37

[issue37184] suggesting option to raise exception if process exits nonzero in `with subprocess.Popen(...):`

2019-06-06 Thread Noah
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 there were

[issue34315] Regex not evalauated correctly

2019-02-22 Thread noah
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 cause it to return No

[issue21314] Document '/' in signatures

2018-11-21 Thread Noah Haasis
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

[issue34921] NoReturn not allowed by get_type_hints when future import annotations is used

2018-10-07 Thread noah
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 ultimately fails

[issue34921] NoReturn not allowed by get_type_hints when future import annotations is used

2018-10-07 Thread noah
Change by noah : -- keywords: +patch pull_requests: +9136 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34921> ___ ___ Python-

[issue21314] Document '/' in signatures

2018-09-10 Thread Noah Haasis
Noah Haasis added the comment: Can I work on this? -- nosy: +noah.haasis ___ Python tracker <https://bugs.python.org/issue21314> ___ ___ Python-bugs-list mailin

[issue34545] error in the repl due to indentation

2018-08-29 Thread Noah Haasis
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

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
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', 'tristatevalue'] Entry ['disabledbackground', 'disabledforeground

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Change by Noah Haasis : -- keywords: +patch pull_requests: +7909 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
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', 'foreground', 'height', 'highlightbackground', 'highlightcolor

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-20 Thread Noah Haasis
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.org/issue34

[issue33836] [Good first-time issue] Recommend keyword-only param for memoization in FAQ

2018-06-13 Thread Noah Haasis
Change by Noah Haasis : -- keywords: +patch pull_requests: +7300 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33447] Asynchronous lambda syntax

2018-05-08 Thread Noah Simon
Noah Simon <noahs2...@gmail.com> added the comment: Actually, you wouldn't even need to import asyncio. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33447] Asynchronous lambda syntax

2018-05-08 Thread Noah Simon
New submission from Noah Simon <noahs2...@gmail.com>: 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 +

[issue30593] sqlite3 executescript does not respect isolation_level?

2017-06-12 Thread Noah Levitt
Changes by Noah Levitt <nlevi...@gmail.com>: Added file: http://bugs.python.org/file46943/issue30593-test.diff ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue30593] sqlite3 executescript does not respect isolation_level?

2017-06-12 Thread Noah Levitt
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 commit itself

[issue30593] sqlite3 executescript does not respect isolation_level?

2017-06-12 Thread Noah Levitt
Noah Levitt added the comment: Here's a test case -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue30593> ___ ___ Python-bugs-list

[issue30593] sqlite3 executescript does not respect isolation_level?

2017-06-07 Thread Noah Levitt
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. -- components

[issue27471] sre_constants.error: bad escape \d

2016-07-08 Thread Noah Petherbridge
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+?)'), '(?:\d+?

[issue17127] multiprocessing.dummy.Pool does not accept maxtasksperchild argument

2013-02-04 Thread Noah Yetter
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 API of multiprocessing but is no more than a wrapper

[issue10146] Incorrect regex generation in translate_pattern

2010-10-19 Thread Noah Kantrowitz
New submission from Noah Kantrowitz noah+bugs.python@coderanger.net: 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

[issue4334] Mac Build Script is broken for 2.6 release

2008-11-16 Thread Noah Gift
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, already

[issue2852] sidebar directive fails

2008-05-14 Thread Noah Kantrowitz
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? -- assignee

[issue2321] return more memory from unicode objects to system

2008-03-17 Thread Noah Kantrowitz
Changes by Noah Kantrowitz [EMAIL PROTECTED]: -- nosy: +coderanger __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2321 __ ___ Python-bugs-list mailing list Unsubscribe

[issue1085] OS X 10.5.x Build Problems

2007-09-01 Thread Noah Gift
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