Yuv Gre added the comment:
What's the status with this patch? If nobody's looking at it I can try to see
if it works and write the test and documentation for it.
--
nosy: +ubershmekel
versions: +Python 3.3 -Python 3.1
___
Python trac
New submission from Yuv Gre :
A spelling mistake ("recommentation") and a bit rephrasing for clarity. I think
better can be done, but more text would have to be moved around.
--
assignee: georg.brandl
components: Documentation
files: webservers_spelling.patch
keywords: patc
New submission from Yuv Gre :
In javascript and java each number has a toString method which allows
for easy string representation in different bases. If the function int(x[,
base]) exists as a builtin, the inverse should at least be
somewhere in the standard library. Personally I believe a
Yuv Gre added the comment:
Use case - 'hashing' a counter for example like video ID's in youtube.
One could use a regular int internally and publish a shorter 62-base id
for links.
Guido said on http://mail.python.org/pipermail/python-dev/2006-
January/059923.html
"I t
New submission from Yuv Gre :
>>> import inspect
>>> inspect.getargspec(print)
Traceback (most recent call last):
File "", line 1, in
File "F:\Python31\lib\inspect.py", line 787, in getargspec
getfullargspec(func)
File "F:\Python31\l
Yuv Gre added the comment:
You're right, I was confused by the statement "arg is not a Python
function". I didn't realize 'arg' meant the function I passed to
getargspec, I thought it was just strange.
After digging a bit into inspect.py, may I suggest li
New submission from Yuv Gre :
A bit nitpicky but there are 3 spaces instead of 4 in the docs. This is
relevant to py3k and trunk.
http://docs.python.org/library/socketserver.html#socketserver-udpserver-
example
--
assignee: georg.brandl
components: Documentation
files: 3-spaces-udp
Changes by Yuv Gre :
--
title: Inconsisten Indentation In SocketServer Docs -> Inconsistent indentation
in SocketServer docs
___
Python tracker
<http://bugs.python.org/iss
New submission from Yuv Gre :
I'm using Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit
(Intel)] on win32. Running the following code:
import profile
import math
import decimal
def show_bug():
x = decimal.Decimal.from_float(math.e)
Yuv Gre added the comment:
Now that we're on the subject of "from_float", I just recalled this slight
issue:
Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)]
on
win32
Type "help", "copyright", "credits" or "license&q
10 matches
Mail list logo