V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  fghzpqm  ›  全部回复第 3 页 / 共 3 页
回复总数  52
1  2  3  
2014-09-30 15:18:33 +08:00
回复了 wangleineo 创建的主题 问与答 怎样优雅解决 python 解析 xml gb2312 编码的问题?
所有 Python 问题都可以用 «换 Python 3» 解决?

$ ipython
Python 3.4.1 (default, Aug 20 2014, 12:12:32)
Type "copyright", "credits" or "license" for more information.

In [1]: import xml.etree.ElementTree as ET

In [2]: ET.parse('test.xml')
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-2-df5d74dfe4aa> in <module>()
----> 1 ET.parse('test.xml')

/Users/fghzpqm/.pyenv/versions/3.4.1/lib/python3.4/xml/etree/ElementTree.py in parse(source, parser)
1185 """
1186 tree = ElementTree()
-> 1187 tree.parse(source, parser)
1188 return tree
1189

/Users/fghzpqm/.pyenv/versions/3.4.1/lib/python3.4/xml/etree/ElementTree.py in parse(self, source, parser)
596 # It can be used to parse the whole source without feeding
597 # it with chunks.
--> 598 self._root = parser._parse_whole(source)
599 return self._root
600 while True:

ValueError: multi-byte encodings are not supported
2014-08-06 15:56:07 +08:00
回复了 Automan 创建的主题 问与答 有没有现成的 nginx 反向+简繁体转换的方案?
2014-08-05 17:11:11 +08:00
回复了 jxwho 创建的主题 程序员 Mac 下 MySQL 安装方式
@jxwho 装 MySQL-python 何必装 MySQL!

brew install mysql-connector-c
pip install MySQL-python
2014-07-28 16:38:15 +08:00
回复了 roseth 创建的主题 Python 被 Mysql for Python 折腾坏了
两行命令搞定:

brew install mysql-connector-c
pip install MySQL-python
2014-05-20 18:47:00 +08:00
回复了 shyrock 创建的主题 Python urllib2 不支持 Connection:keep-alive?
是的,不支持。

是的,你应该换 requests.
不行,set_by_lua 是运行在 rewrite 阶段,并且:

『This directive is implemented by injecting custom commands into the standard HttpRewriteModule's command list. Because HttpRewriteModule does not support nonblocking I/O in its commands, Lua APIs requiring yielding the current Lua "light thread" cannot work in this directive.』

http://wiki.nginx.org/HttpLuaModule#set_by_lua
2014-04-18 11:24:45 +08:00
回复了 octopus_new 创建的主题 Ubuntu 有人觉得 ubuntu 是业余级别的人用的系统么?
我就是这个 senior 么?
2014-02-20 11:25:42 +08:00
回复了 kevinroot 创建的主题 Python 为毛 python 没有自增自减运算?
@VYSE GIL 并不能保证 a += 1 是原子的。 cc @est
2013-09-05 15:10:46 +08:00
回复了 TNT 创建的主题 Python python最好用的编辑器是什么呢?
Emacs
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1825 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 16:28 · PVG 00:28 · LAX 08:28 · JFK 11:28
Developed with CodeLauncher
♥ Do have faith in what you're doing.