Anthony Long added the comment:
http://maw.liquifire.com/maw?set=image[2302.000.13314%20a]&call=url[file:325x445]
works properly. Notice the %20 instead of ' '
--
nosy: +antlong
___
Python tracker
<http://bugs.pyth
New submission from Anthony Long :
http://python.org/community/jobs/
http://python.org/community/jobs/www.austinfraser.com
\_ error code: 404 (not found)
http://python.org/lumino.so
\_ error code: 404 (not found)
http://python.org/community
New submission from Anthony Long :
http://pypi.python.org/pypi
The copyright in the footer says 2011.
--
components: None
messages: 160928
nosy: antlong
priority: normal
severity: normal
status: open
title: Copyright date in footer of /pypi says 2011
Anthony Long added the comment:
My plan is to document it, as it exists, in the current implementation. That's
a start atleast, and will provide an entry point for further documentation in
the future should it be changed again.
--
___
P
Anthony Long added the comment:
I'll have a doc patch shortly.
Also, I am working on defining a solid range. Memory is not an issue like it
was back in 1991 when this range was originally implemented, so we can go
higher and get a bigger performance boost. This will be very importan
New submission from Anthony Long :
http://docs.python.org/c-api/int.html
"The current implementation keeps an array of integer objects for all integers
between -5 and 256, when you create an int in that range you actually just get
back a reference to the existing object. So it shou
New submission from Anthony Long :
I ran
python test_time.py
and python immediately crashed.
This is the trace from mac's error reporter:
http://dpaste.de/Jsw7/
--
components: Tests
messages: 129502
nosy: antlong
priority: normal
severity: normal
status: open
title: Ru
Anthony Long added the comment:
Strange, I didn't see it until this email came. Probably an old browser cache.
Either way, looks good to me. No issues on mac SL.
--
nosy: +antlong
___
Python tracker
<http://bugs.python.org/is
Changes by Anthony Long :
--
nosy: -antlong
___
Python tracker
<http://bugs.python.org/issue11014>
___
___
Python-bugs-list mailing list
Unsubscribe:
Anthony Long added the comment:
Tests trying all positions and expecting an appropriate TypeError should be
included.
--
nosy: +antlong
___
Python tracker
<http://bugs.python.org/issue11
New submission from Anthony Long :
On pypi, when you are inside of your packages' files area, the link that is
attached to
1. Use the setup.py "upload" command. # "upload"
is broken, it links to http://www.python.org/doc/dist/package-upload.html which
returns
Anthony Long added the comment:
Works for me, py2.7 on snow leopard.
--
nosy: +antlong
___
Python tracker
<http://bugs.python.org/issue10976>
___
___
Python-bug
Anthony Long added the comment:
Are there tests for this?
--
nosy: +antlong
___
Python tracker
<http://bugs.python.org/issue5863>
___
___
Python-bugs-list mailin
Anthony Long added the comment:
Patched my installation of python27 (via macports, snow leopard) and the patch
was successful. Verified patch works in a limited capacity, using yolk.
--
nosy: +antlong
___
Python tracker
<http://bugs.python.
New submission from Anthony Long :
import unittest
from selenium import selenium
class SetupSomething(unittest.TestCase):
def setUp(self, URL):
self.selenium = selenium("localhost", , "*firefox", self.URL)
def tearDown(self):
pass
New submission from Anthony Long :
I would like to add docstrings to dicts and named tuples. Dicts can be used to
hold many different kinds of information, and docstrings would help to shed
light on what the dict does to others.
Named tuples also should have docstrings, since they can also
Anthony Long added the comment:
The locale is set incorrectly though - so it is not valid data. Valid data is
a-Z. nothing more nothing less, and the locale and the alphabet should not be
changed.
--
___
Python tracker
<http://bugs.python.
Anthony Long added the comment:
I disagree. It's expected that the function will return valid data. This
doesn't return valid data so isalpha() is compromised.
--
___
Python tracker
<http://bugs.python.
Anthony Long added the comment:
Same behaviour on python 3,
http://pastebin.ca/1907343
--
___
Python tracker
<http://bugs.python.org/issue9365>
___
___
Python-bug
New submission from Anthony Long :
install a distro of without sqlite3 support. now you should have a
/usr/lib/python2.6/sqlite3, which obviously isn't usable.
now if you install sqlite3, and try a 'import sqlite3' it still doesn't work.
so you have to compile/install py
Anthony Long added the comment:
A bit more info:
Python 2.6.4 (r264:75706, Mar 18 2010, 14:58:13)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>&g
Anthony Long added the comment:
After import _tkinter, I would up getting this, which is totally different than
before:
>>> letters
'abcdefghijklmnopqrstuvwxyz\xaa\xb5\xba\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf8\xf9\x
Anthony Long added the comment:
Python 2.6.4, Mac 10.5:
>>> from string import letters
>>> letters
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\xaa\xb5\xba\xc0\xc1\xc2\xc
3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd
8\xd9\xda\
Anthony Long added the comment:
Mac 10.5.6: py 2.6.4 - broken
Python 2.6.4 (r264:75706, Mar 18 2010, 14:58:13)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> '\xff&
Anthony Long added the comment:
Windows 64 bit, python 2.7:
>>> '\xff'.isalpha()
>>> False
>>> import idlelib.run
>>> '\xff'.isalpha()
>>> False
and- Windows 32 bit, python 2.6: Both False.
--
New submission from Anthony Long :
string.letters should display the locale based equivalent of a-Z.
In enUS this would be a-z A-Z, in total a len of 52, whereas in spain it would
be a-z (with ñ), and A-Z (Ñ).
Each locale should change the returned letters.
http://en.wikipedia.org/wiki
Anthony Long added the comment:
Also: windows 64x, python 2.7
1.
Python 2.7 (r27:82525, Jul 4 2010, 07:43:08) [MSC v.1500 64 bit (AMD64)]
on win32
2.
Type "copyright", "credits" or "license()" for more information.
3
New submission from Anthony Long :
On mac 10.5, python 2.6.4 (via mac ports) performing
len(string.letters) will produce 117 instead of 52.
from terminal:
along-mb:~ along$ locale
LANG="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
LC_MESS
28 matches
Mail list logo