[issue36466] Adding a way to strip annotations from compiled bytecode

2019-04-17 Thread cary
cary added the comment: Thanks for the feedback! I wasn't aware that modules depended on this during runtime. Abandoning this :) -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue36466] Adding a way to strip annotations from compiled bytecode

2019-03-28 Thread cary
New submission from cary : Similar to how `-OO` currently strips docstrings from compiled bytecode, it would be nice if there were a way to strip annotations as well to further compact the bytecode. Attached is my initial attempt. From some simple manual testing, Python with this patch

[issue33376] [pysqlite] Duplicate rows can be returned after rolling back a transaction

2018-10-30 Thread cary
Change by cary : -- keywords: +patch pull_requests: +9564 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue33376> ___ ___ Python-

[issue33376] [pysqlite] Duplicate rows can be returned after rolling back a transaction

2018-04-27 Thread cary
New submission from cary <c...@dropbox.com>: # Description Rolling back a transaction causes all statements associated with that transaction to be reset, which allows the statements to be used again from the pysqlite statement cache. This can interact with various methods on `Cursor` o

[issue7833] Bdist_wininst installers fail to load extensions built with Issue4120 patch

2011-03-06 Thread John Cary
John Cary jrobc...@gmail.com added the comment: Just to follow up. My case is an application that is almost all statically linked, but it loads in the python library, and at runtime it needs to load the tables module, and as distributed by Python, I get the load-time error on Windows. Using

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-08-18 Thread Cary R.
Cary R. cygc...@yahoo.com added the comment: That is the manual I am referencing and the last time I looked it was the most recent. I'm not to familiar with the Python port of Tix, but I am using the command, label, state, and variable options and they already work fine. I could try the other

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-05-08 Thread Cary R.
Changes by Cary R. cygc...@yahoo.com: -- versions: +Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5961 ___ ___ Python-bugs-list mailing

[issue5961] Missing labelside option for Tix option menu (fix included)

2009-05-07 Thread Cary R.
New submission from Cary R. cygc...@yahoo.com: The Tix Optionmenu is documented to support a labelside option that is used to specify where the label should be relative to the selection. I have verified that adding 'labelside' to the static_options when calling the base constructor (TixWidget