ERROR: No matching distribution found for PyQt5==5.15.4
-- *The contents of this email message and any attachments **thereto** are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately **notify** the sender by reply email and delete this message and **its **attachments. Any unauthorized use, dissemination, copying, or storage of this message or its attachments **is subject to criminal and civil liability** under the Data Privacy Act of 2012 (RA 10173)** and the Intellectual Property Code of the Philippines (RA 8293), as may be applicable**.* -- https://mail.python.org/mailman/listinfo/python-list
problem reading a CSV file
Win 10, Chrome, Python 3.10.1 New at python error on open statement Probably simple error but I do not see it. The program is a python example with the file name being changed. I want to experiment with changing the literal file name in the open statement to a variable name later. Larry -- https://mail.python.org/mailman/listinfo/python-list
Re: Sad news: Fredrik Lundh ("Effbot") has passed away
On Sunday, December 12, 2021 at 2:01:19 PM UTC, Skip Montanaro wrote: > Like many others, I'm saddened to hear of Fredrik Lundh's passing. I > vaguely recall meeting him just once, probably at a Python workshop, > before they grew big enough to be called conferences. Effbot.org was > my Tkinter, ElemenTree, and PIL reference and cheat sheet. > > My attention to Python development has waxed and waned over the years. > Most of the time, the trip through the Python folder in my mail > program was generally pretty quick, hitting the 'd' key far more often > than I'd stop to read a message. There are only a few people whose > messages I'd always read. Effbot was one. In my opinion, Fredrik ranks > up there with Guido, Tim Peters and Barry Warsaw. > > I went to effbot.org and saw the "on hiatus" message. Searching > through The Wayback Machine, it seems it went on hiatus in late > November, 2020. The 11 November 2020 snapshot appears to be the last > usable version: > > https://web.archive.org/web/2020145627/http://effbot.org/ > > Probably worth a bookmark in your browser. > > Rest easy /F ... > > Skip I hadn't realised effbot.org was 'on hiatus'. Yes, definitely worth bookmarking The Wayback Machine backup - or even (someone?) making a separate archive? -- https://mail.python.org/mailman/listinfo/python-list
Installation problems
Good morning, i am using a python application to program ESP8266. in my office everything works fine, but in production, where users don't have the same access privileges, I can't get it to go. In production I performed a custom installation defining "for all users", but the modules are placed elsewhere and this is perhaps the problem. How can I put the modules in the correct folder? in general how can I get around the obstacle many thanks in advance for your help [Firma-Mail-Roger_Cristiano-Loro] -- https://mail.python.org/mailman/listinfo/python-list
Re: problem reading a CSV file
On Tue, Dec 14, 2021 at 12:05 AM Larry Warner wrote: > > Win 10, Chrome, Python 3.10.1 > New at python > error on open statement > > Probably simple error but I do not see it. > > The program is a python example with the file name being changed. I want > to experiment with changing the literal file name in the open statement to > a variable name later. > Use forward slashes "/" instead of backslashes "\". ChrisA -- https://mail.python.org/mailman/listinfo/python-list
Re: problem reading a CSV file
On 2021-12-12 23:37, Larry Warner wrote: Win 10, Chrome, Python 3.10.1 New at python error on open statement Probably simple error but I do not see it. The program is a python example with the file name being changed. I want to experiment with changing the literal file name in the open statement to a variable name later. It's difficult to say what the problem is when you haven't given us the code! -- https://mail.python.org/mailman/listinfo/python-list
Re: problem reading a CSV file
On 14/12/21 7:07 am, MRAB wrote: It's difficult to say what the problem is when you haven't given us the code! Note: Attachments do not make it to this list. You will need to insert the code into the message as text. -- Greg -- https://mail.python.org/mailman/listinfo/python-list
Re: Installation problems
On 13/12/21 8:25 pm, Cristiano Loro wrote: In production I performed a custom installation defining "for all users", but the modules are placed elsewhere and this is perhaps the problem. How can I put the modules in the correct folder? How are you installing the modules? Are you doing it with sufficient privileges to put them in the shared area? Are you sure that your users are running the same Python that you installed? -- Greg -- https://mail.python.org/mailman/listinfo/python-list
Re: Isn't TypeError built in?
On 13/12/2021 12:42 pm, Chris Angelico wrote: On Mon, Dec 13, 2021 at 12:31 PM Mike Dewhirst via Python-list wrote: Obviously something is wrong elsewhere but I'm not sure where to look. Ubuntu 20.04 with plenty of RAM. def __del__(self): try: for context_obj in self._context_refs: try: delattr(context_obj, self._attr_name) except AttributeError: pass except TypeError:# THIS IS LINE 96 IN THE APACHE2 ERROR LOG BELOW # WeakSet.__iter__ can crash when interpreter is shutting down due # to _IterationGuard being None. pass [Mon Dec 13 01:15:49.875993 2021] [mpm_event:notice] [pid 1033:tid 140446449658944] AH00493: SIGUSR1 received. Doing graceful restart [Mon Dec 13 01:15:49.878443 2021] [so:warn] [pid 1033] AH01574: module dav_module is already loaded, skipping [Mon Dec 13 01:15:49.885659 2021] [mpm_event:notice] [pid 1033:tid 140446449658944] AH00489: Apache/2.4.41 (Ubuntu) SVN/1.13.0 OpenSSL/1.1.1f mod_wsgi/4.6.8 Python/3.8 configured -- resuming normal operations [Mon Dec 13 01:15:49.885664 2021] [core:notice] [pid 1033:tid 140446449658944] AH00094: Command line: '/usr/sbin/apache2' Exception ignored in: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/asgiref/local.py", line 96, in __del__ NameError: name 'TypeError' is not defined Exception ignored in: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/asgiref/local.py", line 96, in __del__ NameError: name 'TypeError' is not defined Any hints welcome ... During interpreter shutdown, all kinds of things can go weird. The order that things get destroyed isn't always clearly defined. Is it possible to do the cleanup work before interpreter shutdown? Alternatively: maybe take a local reference to the exception types you need to refer to (just "AttributeError = AttributeError" at top level should do it), which should keep them alive longer (I think). Worst case, capture *all* exceptions, then look at e.__class__.__name__ and match on that. ChrisA OK - not solved but resolved anyway. The Django project was failing on the new server and working fine in dev. The problem seems to be a mis-export from an old subversion repo.The project was being reconstituted on a new staging server from a reloaded svn dump from the old (ancient) svn server to the new svn server on the same machine. Resolution "happened" when I updated the (c) notice in all source files and recommitted to the new server and re-exported from that. The repo looks fine. The log is all there back to the beginning. As a test I have deployed from an earlier revision and that all works. It's either a miracle or I did something else (which I didn't notice) which fixed it. Thanks to everyone for thinking about this. Cheers Mike -- Signed email is an absolute defence against phishing. This email has been signed with my private key. If you import my public key you can automatically decrypt my signature and be sure it came from me. Just ask and I'll send it to you. Your email software can handle signing. OpenPGP_signature Description: OpenPGP digital signature -- https://mail.python.org/mailman/listinfo/python-list
