[issue27862] Make urllib.parse runnable as a script

2016-08-25 Thread EungJun Yi

New submission from EungJun Yi:

It would be nice if urllib.prase runnable as a script so I can easily parse 
urls in command line or shell script.

I have attached a patch.

--
components: Library (Lib)
files: 0001-Make-urllib.parse-runnable-as-a-script.patch
keywords: patch
messages: 273660
nosy: EungJun.Yi
priority: normal
severity: normal
status: open
title: Make urllib.parse runnable as a script
type: enhancement
versions: Python 3.5
Added file: 
https://bugs.python.org/file44226/0001-Make-urllib.parse-runnable-as-a-script.patch

___
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue27862>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread EungJun Yi

Changes by EungJun Yi semtlen...@gmail.com:


Added file: http://bugs.python.org/file25597/rfc6585.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14809
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread EungJun Yi

EungJun Yi semtlen...@gmail.com added the comment:

Hynek, I have fixed them and upload the patch, rfc6585-rev2.patch.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14809
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-14 Thread EungJun Yi

New submission from EungJun Yi semtlen...@gmail.com:

This patch add HTTP status codes introduced by RFC 6585, to http.client and 
http.server.

428 Precondition Required
429 Too Many Requests
431 Request Header Fields Too Large
511 Network Authentication Required

--
components: Library (Lib)
files: rfc6585.patch
keywords: patch
messages: 160651
nosy: EungJun.Yi
priority: normal
severity: normal
status: open
title: Add HTTP status codes introduced by RFC 6585
type: enhancement
versions: Python 3.3
Added file: http://bugs.python.org/file25582/rfc6585.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue14809
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12177] re.match raises MemoryError

2011-05-25 Thread EungJun Yi

New submission from EungJun Yi semtlen...@gmail.com:

re.match raises MemoryError when trying to match r'()+?1' to 'a1', as shown 
below.

~$ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:05:24) 
[GCC 4.5.2] on linux2
Type help, copyright, credits or license for more information.
 import re
 re.match(r'()+?1', 'a1')
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.7/re.py, line 137, in match
return _compile(pattern, flags).match(string)
MemoryError


~$ python3
Python 3.2 (r32:88445, Mar 25 2011, 19:28:28) 
[GCC 4.5.2] on linux2
Type help, copyright, credits or license for more information.
 import re
 re.match(r'()+?1', 'a1')
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python3.2/re.py, line 153, in match
return _compile(pattern, flags).match(string)
MemoryError


--
components: Regular Expressions
messages: 136880
nosy: EungJun.Yi
priority: normal
severity: normal
status: open
title: re.match raises MemoryError
type: resource usage
versions: Python 2.7, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12177
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12177] re.match raises MemoryError

2011-05-25 Thread EungJun Yi

EungJun Yi semtlen...@gmail.com added the comment:

This also raises in 2.6.5

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) 
[GCC 4.4.3] on linux2
Type help, copyright, credits or license for more information.
 import re
 re.match('()+?1', 'a1')
Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/lib/python2.6/re.py, line 137, in match
return _compile(pattern, flags).match(string)
MemoryError

--
versions: +Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12177
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com