- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经在守护进程模式下设置了我的 Python/Django 虚拟环境和 mod_wsgi,并且非常确定(之前做过)它“大部分是正确的”除了我得到以下错误.. .
[Thu Jul 06 00:35:26.986363 2017] [mpm_event:notice] [pid 11442:tid 140557758930432] AH00493: SIGUSR1 received. Doing graceful restart
Exception ignored in: <object repr() failed>
Traceback (most recent call last):
File "/home/jamin/www/dev.tir.com/py361ve/lib/python3.6/site-packages/PIL/Image.py", line 572, in __del__
NameError: name 'hasattr' is not defined
[Thu Jul 06 00:35:27.194483 2017] [mpm_event:notice] [pid 11442:tid 140557758930432] AH00489: Apache/2.4.25 (Ubuntu) mod_wsgi/4.5.15 Python/3.6 configured -- resuming normal operations
[Thu Jul 06 00:35:27.194561 2017] [core:notice] [pid 11442:tid 140557758930432] AH00094: Command line: '/usr/sbin/apache2'
我的 django 应用程序本身通过 wsgi.py 加载正常,但它似乎与核心 python 有关(我的设置可能出错)按照以下方式出错:NameError: name 'hasattr' is not defined
在浏览器中 - 我得到一个普通的“服务器错误 (500)”页面,而不是标准的 Apache“内部服务器错误”页面。
省略我的 VirtualHost 和超出这里的步骤是我为自己整理的基本步骤,如果你能发现任何东西......(我已经尝试了所有不同的 python 包,而不仅仅是 -venv)
Install Python 3.6 and virtualenv
sudo apt-get update
sudo apt-get install python3.6-venv
sudo apt-get install virtualenv
(or find the latest and greatest python package that includes pip https://packages.ubuntu.com/ )
Install Apache2
sudo apt-get install apache2 apache2-dev
Make and enter a folder for your project - then build a Virtual Environment in it
mkdir ~/example.com
cd ~/example.com
virtualenv --python=/usr/bin/python3.6 py361ve
Enter your new Virtual Environment to install packages to it
source py361ve/bin/activate
Install Django, mod_wsgi, and any other needed packages
pip install django
pip install mod_wsgi
pip install ...
(no need for pip3 in virtual environment - django should be the latest release)
Run following command and place output in apache config file ( in /etc/apache2/ )
mod_wsgi-express module-config
Exit your virtual environment
deactivate
(You can re-enter your virtual environment any time using the source method in step 8)
这是我停止/启动/重新启动 apache2 时发生的情况...
apache2 stop...
[Thu Jul 06 06:01:34.190940 2017] [mpm_event:notice] [pid 2015:tid 140157449797120] AH00491: caught SIGTERM, shutting down
_______________________________________________________________
apache2 start...
[Thu Jul 06 06:02:39.076741 2017] [mpm_event:notice] [pid 2181:tid 140553545080320] AH00489: Apache/2.4.25 (Ubuntu) mod_wsgi/4.5.15 Python/3.6 configured -- resuming $
[Thu Jul 06 06:02:39.076890 2017] [core:notice] [pid 2181:tid 140553545080320] AH00094: Command line: '/usr/sbin/apache2'
_______________________________________________________________
apache2 restart...
Exception ignored in: <object repr() failed>
Traceback (most recent call last):
File "/home/jamin/www/dev.tir.com/py361ve/lib/python3.6/site-packages/PIL/Image.py", line 572, in __del__
NameError: name 'hasattr' is not defined
[Thu Jul 06 06:05:43.307877 2017] [mpm_event:notice] [pid 2181:tid 140553545080320] AH00491: caught SIGTERM, shutting down
[Thu Jul 06 06:05:43.492499 2017] [mpm_event:notice] [pid 2301:tid 140353155558912] AH00489: Apache/2.4.25 (Ubuntu) mod_wsgi/4.5.15 Python/3.6 configured -- resuming $
[Thu Jul 06 06:05:43.492705 2017] [core:notice] [pid 2301:tid 140353155558912] AH00094: Command line: '/usr/sbin/apache2'
最佳答案
这可能是因为当 Python 解释器在进程关闭时被销毁时代码仍在后台线程中运行。在解释器销毁期间发生的事情是所有模块都被清除,并且事物的属性访问通常返回 None
作为回退。在这种情况下,内置模块似乎在 PIL 对象被销毁之前被删除,因此它找不到 hasattr。
你能确认这只发生在 Apache 重启和进程关闭时吗?
关于python - NameError : name 'hasattr' is not defined - Python3. 6, Django1.11, Ubuntu16-17, Apache2.4, mod_wsgi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44939556/
我需要使用 python hasattr 来实现我的特定目的。我需要检查一个对象是否具有一个属性,并且不具有另一个属性。 考虑名为 model 的类对象,我需要检查它是否具有名为 domain_id
hasattr调用了哪个魔法方法方法? getattr(__o, name) 也可以称为 __o.__getattr__(name) setattr(__o, name) 也可以称为 __o.__se
我需要这样的东西(伪代码): if hasattr(object, 'detail.infotext') 我的意思是我想检查对象是否具有属性 details如果有,那么如果 details有一个名为
这是我的示例代码,用于检查类中是否存在给定属性。 class EmpDict: def __init__(self, data): self.data = data
if hasattr(form, 'name') and hasattr(form, 'date'): print(form.name) #'Some name' - True print
假设一个函数查看一个对象并检查它是否具有函数 a_method: def func(obj): if hasattr(obj, 'a_method'): ... els
如何使用 hasattr(或不使用)检查函数或方法中是否存在 attr?当我尝试以任何方式检查它是否为 False 时: >>> def f(): at = True >>> hasa
正如一些优秀的人告诉我 callable() 可以用来解决这个问题,我仍然发现这是一个不同的问题,因为任何想到这个问题的人都不会找到answer 因为他不会直接把它连接到 callable()。另外,
hasattr文档说它需要一个对象和一个属性名称,并让您知道该对象上是否存在该属性。 我发现它似乎也适用于类名(即不是实例对象)。 类似于: class A: def Attr1(self):
这个问题在这里已经有了答案: Select elements by attribute (17 个答案) 关闭 2 年前。 在 jQuery 中如何检查元素上是否有属性?类似于hasClass,但是
我正在努力解决这个问题。假设我的模型在以下 testapp 应用 models.py 文件中: from django.db import models class Parent(models.Mod
我对动态添加到 Python 类的方法有疑问。考虑以下一组带有方法的类 _str为任何定义的 动态添加方法。 class ToStr(object): @classmethod de
class Avatar: def __init__(self, HP=100, damage=10, defends=10, magic=5): self.__hp = HP
我的一些用户是学生。当用户创建学生文件时,StudentProfile 类被实例化: class StudentProfile(models.Model): user = models.One
为什么 hasattr 说实例没有 foo 属性? >>> class A(object): ... @property ... def foo(self): ...
我有一个使用 __getattr__ 实现虚拟属性的类。属性可能很昂贵,例如执行查询。现在,我正在使用一个库,它会在实际获取对象之前检查我的对象是否具有该属性。 因此,一个查询被执行了两次而不是一次。
我最近一直在阅读一些 tweets和 python documentation关于 hasattr,它说: hasattr(object, name) The arguments are an obj
getattr()函数是Python自省的核心函数,具体使用大体如下: 获取对象引用getattr Getattr用于返回一个对象属性,或者方法 ?
1. getattr()函数是Python自省的核心函数,具体使用大体如下: ?
是否有一个很好的一站式 Python 引用来选择与 hasattr() 一起使用的属性来识别类型。 例如,下面是一个不是字符串的序列: def is_sequence(arg): return
我是一名优秀的程序员,十分优秀!