[issue10599] sgmllib.parse_endtag() is not respecting quoted text

2021-04-26 Thread Irit Katriel


Irit Katriel  added the comment:

sgmllib was removed in python 3.

--
nosy: +iritkatriel
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10599] sgmllib.parse_endtag() is not respecting quoted text

2014-11-18 Thread Serhiy Storchaka

Changes by Serhiy Storchaka storch...@gmail.com:


--
components: +Library (Lib) -None
nosy: +ezio.melotti
versions: +Python 2.7 -Python 2.6

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



[issue10599] sgmllib.parse_endtag() is not respecting quoted text

2010-12-01 Thread Michael Brooks

New submission from Michael Brooks firealwayswo...@gmail.com:

In the attached example is a very simple usage of sgmllib that is trying to 
parse:
input value=a href=http://buglink/a

The bug is that sgmllib is parsing this href.  Browsers on the other hand see 
this as the input's value.  

Also keep in mind that escaping of quote marks in HTML is not like python.  \ 
is not a character literal   thus input value=\a 
href=http://buglink/a is still quoted text and the href should not be 
parsed. 

Thank you

--
components: None
files: sgmllib_bug.py
messages: 123016
nosy: Michael.Brooks
priority: normal
severity: normal
status: open
title: sgmllib.parse_endtag() is not respecting quoted text
type: behavior
versions: Python 2.6
Added file: http://bugs.python.org/file19895/sgmllib_bug.py

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



[issue10599] sgmllib.parse_endtag() is not respecting quoted text

2010-12-01 Thread Michael Brooks

Michael Brooks firealwayswo...@gmail.com added the comment:

Oops, I had a misnomer in my bug report. 
input value=\a href=http://buglink/a is not escaped and there for the 
href should be parsed in this condition but not parsed in the attached 
sgmllib_bug.py.

--

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