Mark Lawrence added the comment:
@Martin can you comment on this please.
--
nosy: +BreamoreBoy, loewis
type: -> behavior
versions: +Python 2.7, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issu
Mark Lawrence added the comment:
What do our unicode experts think about this enhancement request?
--
nosy: +BreamoreBoy
versions: +Python 3.5
___
Python tracker
<http://bugs.python.org/issue18
Mark Lawrence added the comment:
@Michael can you provide a patch to this effect?
--
nosy: +BreamoreBoy
versions: +Python 3.5 -Python 3.3
___
Python tracker
<http://bugs.python.org/issue12
Mark Lawrence added the comment:
@Christian/Victor could either of you provide a patch for this, it's way beyond
my knowledge I'm afraid.
--
nosy: +BreamoreBoy
versions: +Python 2.7, Python 3.4, Python 3.5
___
Python tracker
<http://bu
Mark Lawrence added the comment:
Just a gentle reminder.
--
components: +Extension Modules
nosy: +BreamoreBoy
versions: +Python 2.7, Python 3.5
___
Python tracker
<http://bugs.python.org/issue18
Mark Lawrence added the comment:
Can somebody please take a look at the inline patch in msg193313.
--
nosy: +BreamoreBoy
type: -> behavior
versions: +Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issu
Mark Lawrence added the comment:
Can someone with knowledge of the C code associated with the object/type system
comment on this please.
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue18
Mark Lawrence added the comment:
Sorry but no, when I started out on this a couple of months ago there were over
600 issues that nobody had even bothered to reply to. That number is now down
to 369. I believe that around 200 issues have been closed as a result of my
efforts. Do you have a
Mark Lawrence added the comment:
I can confirm that code page 65001 is the problem using 3.3.3 on Windows 7.
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19
Mark Lawrence added the comment:
>From http://kmike.ru/python-data-structures/ under heading DATrie "Python
>wrapper uses utf_32_le codec internally; this codec is currently slow and it
>is the bottleneck for datrie. There is a ticket with a patch in the CPython
>
Mark Lawrence added the comment:
IMHO this must be changed.
>>> help('')
# nothing!!!
>>> help('a')
Help on module a:
...
I happened to have a module called a.py in the default directory.
--
nosy: +BreamoreBoy
___
Mark Lawrence added the comment:
Would it pay to have a meta issue for all the outstanding pprint issues, or
possibly make issue 7434 the meta issue?
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19
Mark Lawrence added the comment:
Well can someone at least drop the priority from high?
--
___
Python tracker
<http://bugs.python.org/issue8075>
___
___
Python-bug
Mark Lawrence added the comment:
Is it worth leaving this open given the arrival of the new asyncio module in
Python 3.4?
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue777
New submission from Mark Lawrence:
If partition is called with a single byte it works correctly but if called with
the equivalent integer it returns the same bytearray with two empty arrays as
follows.
py> ba = bytearray(range(8))
py> ba
bytearray(b'\x00\x01\x02\x03\x04\x05\x06\x07
Mark Lawrence added the comment:
I believe that all methods should act the same, but they don't as a result of
the work done in issue12170. E.g. find will accept integer input but split
will not. Given this comment at the top of test_bytes.py "XXX This is a mess.
Common tests
Mark Lawrence added the comment:
Why has this been closed? I've just run into exactly the same problem. It
states here http://docs.python.org/3/library/itertools.html#itertools.tee
"itertools.tee(iterable, n=2) - Return n independent iterators from a single
iterable."
Mark Lawrence added the comment:
The docs for tee are the same going right back to its introduction in 2.4. The
itertools count function takes start and step keywords, why can't tee take a
keyword as it's documented to?
--
___
Pyth
Mark Lawrence added the comment:
It's just the docs that need changing to clarify the situation as (say) a,b,c =
tee(range, 3) works perfectly. Sorry I didn't have the foresight to check this
before :(
--
components: +Documentation -Library (Lib)
versions: +
Mark Lawrence added the comment:
How about "Error: vcvarsall.bat not found - VC++ not installed or wrong
version" ?
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.
Mark Lawrence added the comment:
>From the glossary
Quote
keyword argument: an argument preceded by an identifier (e.g. name=) in a
function call or passed as a value in a dictionary preceded by **. For example,
3 and 5 are both keyword arguments in the following calls to complex():
comp
New submission from Mark Lawrence:
c:\Users\Mark\CrossCode>py -3.4 -c "from enum import IntEnum"
Traceback (most recent call last):
File "", line 1, in
ImportError: cannot import name 'IntEnum'
I had earlier tried to install the complete 3.4 setup on Window
Mark Lawrence added the comment:
Bah humbug just found an old enum.py file hanging around.
--
resolution: -> rejected
status: open -> closed
___
Python tracker
<http://bugs.python.org/i
Mark Lawrence added the comment:
The faq doesn't mention the new launcher for Windows. Rather than write too
much I'd simply cross reference this
http://docs.python.org/3/using/windows.html#python-launcher-for-windows. I
think this also impacts on the section "How do I make
Mark Lawrence added the comment:
This shows the report to be wrong, you either have to pass an iterable of ints
or a single int. Even the title is wrong, it doesn't accept more than one
argument if the first one isn't a string, it raises a TypeError.
Python 3.3.3 (v3.3.3:c3896275c0
Mark Lawrence added the comment:
Not on my system, so what's changed?
Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
Mark Lawrence added the comment:
Two attempts, one with the pipe "|" symbol in the mode, one without.
>>> import tarfile; tarfile.open('non-existing', 'r|')
Traceback (most recent call last):
File "", line 1, in
File "C:\Python33\li
Mark Lawrence added the comment:
I think there's a typo in the patch, test = 'xxx' but after the check for
platform and mode, text = ''.
--
___
Python tracker
<http:
Mark Lawrence added the comment:
msg209063 from Larry states "My concern is that itertools.repeat doesn't parse
its arguments like other Python functions." From my viewpoint the only long
term option is to bring repeat (and other functions that you may have found
exhibiting
Mark Lawrence added the comment:
>From a user perspective the docs say this "itertools.repeat(object[, times]) -
>Make an iterator that returns object over and over again. Runs indefinitely
>unless the times argument is specified." So to me the use of "Times=None&
Mark Lawrence added the comment:
Some discussion here
https://groups.google.com/forum/#!topic/dev-python/1D_iExlsva8
--
nosy: +BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20
New submission from Mark Lawrence:
I found the wording here
http://docs.python.org/3/reference/datamodel.html#object.__init__ very
confusing as it implies that __init__ is the class constructor and not the
initialiser. Specifically it says "As a special constraint on constructors, no
Mark Lawrence added the comment:
Good afternoon,
Would you please be kind enough to have my name removed from all nosy lists as
I've no interest in being constantly reminded that I've been called a liar.
Kindest regards.
Mark Lawrence.
On Monday, 3 February 2014, 14:46, Larr
Mark Lawrence added the comment:
@Larry - thank you for the heads up.
--
___
Python tracker
<http://bugs.python.org/issue20384>
___
___
Python-bugs-list mailin
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7325>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7776>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20384>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1353344>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19145>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7262>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20399>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1776674>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20047>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20467>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4492>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -Arfrever
___
Python tracker
<http://bugs.python.org/issue15027>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20266>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue2943>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue20335>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19548>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6128>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19980>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1100942>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue2175>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue777588>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19104>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue504219>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7105>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4945>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6501>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue8075>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue14910>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4037>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue3802>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue19655>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1208730>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4727>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue2213>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1098749>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue2889>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7442>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6159>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1763>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6225>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6181>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4350>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6335>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue16037>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue5717>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue7757>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1887>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1615>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue4080>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue877121>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue15027>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6699>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue15721>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue17605>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue12558>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue917120>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue734176>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue6299>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue2202>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue9849>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1703592>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue9495>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue3778>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue5124>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue896330>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Mark Lawrence :
--
nosy: -BreamoreBoy
___
Python tracker
<http://bugs.python.org/issue1617161>
___
___
Python-bugs-list mailing list
Unsubscribe:
2001 - 2100 of 3464 matches
Mail list logo