Top "Python-3.3" questions

For issues that are specific to Python 3.3. Use the more generic [python] and [python-3.x] tags where possible.

How can I read one line from a telnet response with Python?

I was surprised that I couldn't find this question on here. I would like to take extract one line from …

python python-3.x telnet python-3.3 telnetlib
Is there official guide for Python 3.x release lifecycle?

I just noticed Python 3.2 was removed from the drop down selector in Python Docs. I have a framework using Python 3.3, …

python python-3.x python-3.3
Read Up Until a Point Python

I have a text file full of data that starts with #Name #main then it's followed by lots of numbers …

python text python-3.3 readlines
itertools.accumulate() versus functools.reduce()

In Python 3.3, itertools.accumulate(), which normally repeatedly applies an addition operation to the supplied iterable, can now take a function …

python itertools python-3.3 functools
Python 3.3 source code setup: modules were not found: _lzma _sqlite3 _tkinter

I am trying to set up the compiled version of CPython, on Ubuntu 12.04, by following the python developer guide. Even …

python python-3.3
Python http.client getaddrinfo failed

I am using http.client to try to read an xml file from a host. I would use urllib2, but …

python http python-3.3 httpconnection getresponse
Download a zip file and extract it in memory using Python3

I would like to download a zip file from internet and extract it. I would rather use requests. I don't …

python python-3.x python-3.3 python-requests
Tkinter - How to create submenus in menubar

Is it possible? By looking at the options I'm stumped. Searching on the web hasn't lead me anywhere. Can I …

python tkinter python-3.3 submenu menubar
Python3: TypeError: unhashable type: 'list' when using Counter

I am using Python 3 and I have this code: from collections import Counter c = Counter([r[1] for r in results.…

python counter typeerror python-3.3
subprocess popen.communicate() vs. stdin.write() and stdout.read()

I have noticed two different behaviors with two approaches that should have result in the same outcome. The goal - …

python subprocess python-3.3