Skip to content

Commit

Permalink
Dropped support for Python 2.3 and 2.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
xitology committed May 30, 2011
1 parent fecdbf0 commit 3e7a704
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 53 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'.
(Thank to olt(at)bogosoft(dot)com).
* Clear cyclic references in the parser and the emitter
(Thank to kristjan(at)ccpgames(dot)com).
* Dropped support for Python 2.3 and 2.4.

3.09 (2009-08-31)
-----------------
Expand Down
2 changes: 2 additions & 0 deletions announcement.msg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Changes
* Clear cyclic references in the parser and the emitter
(Thank to kristjan(at)ccpgames(dot)com).
* LibYAML bindings are rebuilt with the latest version of Cython.
* Dropped support for Python 2.3 and 2.4; currently supported versions
are 2.5 to 3.2.


Resources
Expand Down
11 changes: 1 addition & 10 deletions lib/yaml/constructor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@

import datetime

try:
set
except NameError:
from sets import Set as set

import binascii, re, sys, types

class ConstructorError(MarkedYAMLError):
Expand Down Expand Up @@ -502,11 +497,7 @@ def find_python_name(self, name, mark):
raise ConstructorError("while constructing a Python object", mark,
"expected non-empty name appended to the tag", mark)
if u'.' in name:
# Python 2.4 only
#module_name, object_name = name.rsplit('.', 1)
items = name.split('.')
object_name = items.pop()
module_name = '.'.join(items)
module_name, object_name = name.rsplit('.', 1)
else:
module_name = '__builtin__'
object_name = name
Expand Down
41 changes: 3 additions & 38 deletions lib/yaml/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,41 +21,6 @@

import codecs, re

# Unfortunately, codec functions in Python 2.3 does not support the `finish`
# arguments, so we have to write our own wrappers.

try:
codecs.utf_8_decode('', 'strict', False)
from codecs import utf_8_decode, utf_16_le_decode, utf_16_be_decode

except TypeError:

def utf_16_le_decode(data, errors, finish=False):
if not finish and len(data) % 2 == 1:
data = data[:-1]
return codecs.utf_16_le_decode(data, errors)

def utf_16_be_decode(data, errors, finish=False):
if not finish and len(data) % 2 == 1:
data = data[:-1]
return codecs.utf_16_be_decode(data, errors)

def utf_8_decode(data, errors, finish=False):
if not finish:
# We are trying to remove a possible incomplete multibyte character
# from the suffix of the data.
# The first byte of a multi-byte sequence is in the range 0xc0 to 0xfd.
# All further bytes are in the range 0x80 to 0xbf.
# UTF-8 encoded UCS characters may be up to six bytes long.
count = 0
while count < 5 and count < len(data) \
and '\x80' <= data[-count-1] <= '\xBF':
count -= 1
if count < 5 and count < len(data) \
and '\xC0' <= data[-count-1] <= '\xFD':
data = data[:-count-1]
return codecs.utf_8_decode(data, errors)

class ReaderError(YAMLError):

def __init__(self, name, position, character, encoding, reason):
Expand Down Expand Up @@ -159,13 +124,13 @@ def determine_encoding(self):
self.update_raw()
if not isinstance(self.raw_buffer, unicode):
if self.raw_buffer.startswith(codecs.BOM_UTF16_LE):
self.raw_decode = utf_16_le_decode
self.raw_decode = codecs.utf_16_le_decode
self.encoding = 'utf-16-le'
elif self.raw_buffer.startswith(codecs.BOM_UTF16_BE):
self.raw_decode = utf_16_be_decode
self.raw_decode = codecs.utf_16_be_decode
self.encoding = 'utf-16-be'
else:
self.raw_decode = utf_8_decode
self.raw_decode = codecs.utf_8_decode
self.encoding = 'utf-8'
self.update(1)

Expand Down
5 changes: 0 additions & 5 deletions lib/yaml/representer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@

import datetime

try:
set
except NameError:
from sets import Set as set

import sys, copy_reg, types

class RepresenterError(YAMLError):
Expand Down

0 comments on commit 3e7a704

Please sign in to comment.