[issue40512] [subinterpreters] Meta issue: per-interpreter GIL

2022-03-05 Thread Jon Parise


Change by Jon Parise :


--
nosy: +jon

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



[issue5755] -Wstrict-prototypes is valid for Ada/C/ObjC but not for C++

2014-01-25 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


--
nosy:  -jon

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



[issue12924] Missing call to quote_plus() in test_urllib.test_default_quoting()

2011-09-06 Thread Jon Parise

New submission from Jon Parise j...@indelible.org:

test_default_quoting() runs a number of identical tests on both quote() and 
quote_plus() (which is most cases have equivalent behavior).  However, at the 
end of the method, there appears to be a missing complementary call to 
quote_plus() despite there being an assertion call for the quote_plus() case.

--
components: Tests
files: test_urllib.default_quoting.patch
keywords: patch
messages: 143663
nosy: jon
priority: normal
severity: normal
status: open
title: Missing call to quote_plus() in test_urllib.test_default_quoting()
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file23112/test_urllib.default_quoting.patch

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



[issue5755] -Wstrict-prototypes is valid for Ada/C/ObjC but not for C++

2011-04-08 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


--
nosy: +jon

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



[issue10194] Add gc.remap() function to the gc module.

2010-10-25 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


--
nosy: +jon

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



[issue9622] Allow to set profile/trace function globally

2010-08-17 Thread Jon Parise

Jon Parise j...@indelible.org added the comment:

There are a few places in the patch where you call the global version 
immediately followed by the local version.  For example:

+PyEval_SetGlobalTrace(NULL, NULL);
 PyEval_SetTrace(NULL, NULL);

Isn't the local call now redundant given that the global version clears all of 
the threadstates already?

--
nosy: +jon

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



[issue7373] Use PyModule_AddIntMacro() in Modules/gcmodule.c

2009-11-21 Thread Jon Parise

New submission from Jon Parise j...@indelible.org:

The attached patch uses PyModule_AddIntMacro() to register the gc
module's constants instead of using a local ADD_INT() macro.

--
components: Interpreter Core
files: gc_macros-trunk.patch
keywords: patch
messages: 95589
nosy: jon
severity: normal
status: open
title: Use PyModule_AddIntMacro() in Modules/gcmodule.c
type: feature request
versions: Python 2.7, Python 3.2
Added file: http://bugs.python.org/file15378/gc_macros-trunk.patch

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



[issue7373] Use PyModule_AddIntMacro() in Modules/gcmodule.c

2009-11-21 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


Added file: http://bugs.python.org/file15379/gc_macros-py3k.patch

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



[issue7373] Use PyModule_AddIntMacro() in Modules/gcmodule.c

2009-11-21 Thread Jon Parise

Jon Parise j...@indelible.org added the comment:

That's true.  I thought it worked the same as the ADD_INT() macro I
replaced, but I see that I was wrong.

Given that, perhaps the original code is best.  I don't see a lot of
value in replacing PyModule_AddIntConstant() with PyModule_AddIntMacro()
within ADD_INT().

--

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



[issue7060] test_multiprocessing dictionary changed size errors and hang

2009-10-11 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


--
nosy: +jon

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



[issue7105] weak dict iterators are fragile because of unpredictable GC runs

2009-10-11 Thread Jon Parise

Changes by Jon Parise j...@indelible.org:


--
nosy: +jon

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



[issue6819] Typo in datamodel.rst (Custon - Custom)

2009-09-02 Thread Jon Parise

New submission from Jon Parise j...@indelible.org:

reference/datamodel.rst misspells Custom as Custon.  The attached
patch fixes that.

--
assignee: georg.brandl
components: Documentation
files: datamodel.custon.diff
keywords: patch
messages: 92157
nosy: georg.brandl, jon
severity: normal
status: open
title: Typo in datamodel.rst (Custon - Custom)
versions: Python 3.2
Added file: http://bugs.python.org/file14819/datamodel.custon.diff

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