New submission from Mher Movsisyan:
>>> urljoin('redis://localhost:6379/0', '/1')
'/1'
>>> urljoin('http://localhost:6379/0', '/1')
'http://localhost:6379/1'
--
messages: 196125
nosy: mher.movsisyan
priority
Mher Movsisyan added the comment:
I think this is not a bug. plistlib api accepts dict (not OrderedDict) and
sorted output is a valid output. plistlib sorts dictionaries to be consistent
with Apple's tools.
property list format [1] uses CFDictionary [2] with CFString keys. CFDictionar
Changes by Mher Movsisyan :
--
nosy: +mher.movsisyan
___
Python tracker
<http://bugs.python.org/issue18119>
___
___
Python-bugs-list mailing list
Unsubscribe:
Mher Movsisyan added the comment:
Can you share the link of the new robots.txt standard? I may help to implement
it.
--
___
Python tracker
<http://bugs.python.org/issue17
Mher Movsisyan added the comment:
The second patch only normalizes the url. From
http://www.robotstxt.org/norobots-rfc.txt it is not clear how to handle
multiple rules with the same prefix.
--
Added file: http://bugs.python.org/file29476/parser2.patch
Mher Movsisyan added the comment:
Attaching patch.
--
keywords: +patch
nosy: +mher
Added file: http://bugs.python.org/file29457/parser.patch
___
Python tracker
<http://bugs.python.org/issue17
Mher Movsisyan added the comment:
I don't see compelling reasons to wrap ExpatError in ValueError. ExpatError
contains extra diagnostic information such as line and column numbers.
--
___
Python tracker
<http://bugs.python.org/iss
Mher Movsisyan added the comment:
This bug was fixed in #5313
--- a/multiprocessing/process.py
+++ b/multiprocessing/process.py
@@ -225,7 +225,8 @@ class Process(object):
self._children = set()
self._counter = itertools.count(1)
try
Mher Movsisyan added the comment:
The reported error is only reproducible in 2.6
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
&
Mher Movsisyan added the comment:
I've replaced plistlib.InvalidPlistError with ValueError
--
Added file: http://bugs.python.org/file20258/plist_validation_v2.diff
___
Python tracker
<http://bugs.python.org/iss
Mher Movsisyan added the comment:
Treating python services like frozen executables solves the issue. The patch is
attached.
--
Added file: http://bugs.python.org/file20241/forking_r87679.patch
___
Python tracker
<http://bugs.python.org/issue5
Mher Movsisyan added the comment:
Attached test case demonstrates the issue.
--
nosy: +mher
Added file: http://bugs.python.org/file20240/test_issue5162.py
___
Python tracker
<http://bugs.python.org/issue5
Mher Movsisyan added the comment:
py3k does support socket.fromfd on Windows (#1378)
--
nosy: +mher
___
Python tracker
<http://bugs.python.org/issue5879>
___
___
Mher Movsisyan added the comment:
The attached patch fixes crashes on bad input. The patch implements validation
for dict and array elements as well as some resource cleanup. The tests are
included as well.
--
keywords: +patch
nosy: +mher
Added file: http://bugs.python.org/file19996
Mher Movsisyan added the comment:
Sorry for confusion. I thought a "leaf directory" is an intermediate-level
directory.
>>> import os
>>> os.makedirs("/tmp/a/b")
>>>
--
___
Py
New submission from Mher Movsisyan :
The documentation of os.makedirs (http://docs.python.org/library/os.html?
highlight=makedirs#os.makedirs) is misleading. It states that os.makedirs
raises an
exception if the leaf directory already exists but it doesn't.
Lib/os.py:
136 def makedirs
16 matches
Mail list logo