Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#10620 closed (fixed)

All .py files have LF line endings except test_mutable_list.py

Reported by: ruiyen Owned by: nobody
Component: GIS Version: 1.1-beta
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Source file http://code.djangoproject.com/svn/django/trunk/django/contrib/gis/geos/tests/test_mutable_list.py (as of revision 10170 and version 1.1-beta-1) has CRLF line endings, whereas all other .py files under http://code.djangoproject.com/svn/django/trunk/django/ have LF line endings.

This interfered with a Python 2to3 conversion that I was experimenting with, although I am very aware that Python 3 is not supported yet.

Minimal solution: Replace the CRLF line endings in file test_mutable_list.py with LF line endings.

Full solution: Replace the CRLF line endings in file test_mutable_list.py with LF line endings, then set the "svn:mime-type" property of all .py files to "text/x-python", and set the "svn:eol-style" property of all .py files to "native".

Change History (4)

comment:1 by Malcolm Tredinnick, 16 years ago

milestone: 1.1 beta1.1
Triage Stage: UnreviewedAccepted

We just need to send the eol-style. It happens sometimes.

comment:2 by jbronn, 16 years ago

Damn! However, I didn't forgot to set svn:ignore.

comment:3 by jbronn, 16 years ago

Resolution: fixed
Status: newclosed

(In [10174]) Fixed #10620 -- removed carriage returns in a GEOS tests module; fixed other errata such as unnecessary pymutable_geometries module and not having GEOSGeometry call __init__.

comment:4 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top