[issue43201] sqlite3 import * ImportError: DLL load failed while importing _sqlite3: The specified module could not be found.

2021-02-11 Thread Tyler Reed
Tyler Reed added the comment: It was an environment issue. There were pre-existing files (pyd and pyc) in the application folder (from builds done with Kivy) and apparently python was loading those instead of the libraries in the python39 folder. -- resolution: -> not a bug st

[issue43201] sqlite3 import * ImportError: DLL load failed while importing _sqlite3: The specified module could not be found.

2021-02-11 Thread Tyler Reed
New submission from Tyler Reed : Running on a new, updated Windows 10 machine with no virtual environment. After removing all previous Python installations, rebooting and performing a fresh install if Python 3.9.1. I run the python console and type: import sqlite3 I receive the following

[issue39598] ERR_CACHE_MISS

2020-02-10 Thread Thomas Reed
Thomas Reed added the comment: Alright, thanks. -- ___ Python tracker <https://bugs.python.org/issue39598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39598] ERR_CACHE_MISS

2020-02-10 Thread Thomas Reed
Thomas Reed added the comment: No, normally browsing the web and products (without login in), after looking at the product details and then clicking the back button, the error will occur. -- ___ Python tracker <https://bugs.python.org/issue39

[issue39598] ERR_CACHE_MISS

2020-02-10 Thread Thomas Reed
New submission from Thomas Reed : Hi, I have problem with cache. If there is someone in the detail of product longer that 5 minutes and than click to button "back",it makes error "ERR_CACHE_MISS". Do you know, how can i solve it? Thank you :) -- components: Wind

[issue39218] Assertion failure when calling statistics.variance() on a float32 Numpy array

2020-01-05 Thread Reed
Reed added the comment: Thank you all for the comments! Either using (x-c)*(x-c), or removing the assertion and changing the final line to `return (U, total)`, seem reasonable. I slightly prefer the latter case, due to Mark's comments about x*x being faster and simpler than x**2. But I am

[issue39218] Assertion failure when calling statistics.variance() on a float32 Numpy array

2020-01-04 Thread Reed
New submission from Reed : If a float32 Numpy array is passed to statistics.variance(), an assertion failure occurs. For example: import statistics import numpy as np x = np.array([1, 2], dtype=np.float32) statistics.variance(x) The assertion error is: assert T == U

[issue38099] __dict__ attribute is incorrectly stated to be read-only

2019-09-11 Thread Reed
Reed added the comment: Thank you for the clarification. I didn't realize the section only referred to types, but it makes sense now that I read the documentation more carefully. The documentation is still incorrect for certain attributes (e.g. __bases__ and __name__) as they can be mutated

[issue38099] __dict__ attribute is incorrectly stated to be read-only

2019-09-11 Thread Reed
New submission from Reed : The documentation in this section (https://docs.python.org/3/library/stdtypes.html#special-attributes) states that the __dict__ attribute, and several others, are read-only. In particular, it states: "The implementation adds a few special read-only attri

[issue26725] list() destroys map object data

2016-04-09 Thread Steven Reed
New submission from Steven Reed: Example repro: Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> x=map(bool,[1,0,0,1,1,0]) &

[issue19491] Python Crashing When Saving Documents

2013-11-04 Thread Carolyn Reed
New submission from Carolyn Reed: The ICT teacher at the school I work at has reported that frequently students are experiencing their Python software crashing when they attempt to save files. No error message is reported, the software just freezes. They are using the IDLE GUI Python v 3.2.4

[issue19491] Python Crashing When Saving Documents

2013-11-04 Thread Carolyn Reed
Carolyn Reed added the comment: Unfortunately we are unable to run it from the command line - as we are a school this is locked down for students. There are no error messages at all, the program just freezes. -- ___ Python tracker rep

[issue19491] Python Crashing When Saving Documents

2013-11-04 Thread Carolyn Reed
Carolyn Reed added the comment: Okay, we'll see if we can go to V 3.3.2 and see what difference this makes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19491

[issue19491] Python Crashing When Saving Documents

2013-11-04 Thread Carolyn Reed
Carolyn Reed added the comment: There doesn't seem to be a Pygame version for 3.3 on the pygame webpage? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19491

[issue3862] test_array fails on FreeBSD7 amd64

2008-09-14 Thread Reed O'Brien
Reed O'Brien [EMAIL PROTECTED] added the comment: 2.6rc2 and Python-3.0b3 test_array detail test_alloc_overflow (test.test_array.DoubleTest) ... Killed Fills swap space and dumps core. 2.5.2 test_list test_addmul (test.test_list.ListTest) ... ok test_append (test.test_list.ListTest

[issue3862] test_array fails on FreeBSD7 amd64

2008-09-13 Thread Reed O'Brien
New submission from Reed O'Brien [EMAIL PROTECTED]: or in FreeBSD? 2.6rc1 and 3.0b3 both fail test_array on FreeBSD7 amd64 test_array passes in 2.5.2 on the same machine but fails test_list the same as test_array... *** Signal 9 -- components: Tests messages: 73204 nosy: robrien