#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 , 17 years ago
| milestone: | 1.1 beta → 1.1 |
|---|---|
| Triage Stage: | Unreviewed → Accepted |
comment:3 by , 17 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
We just need to send the eol-style. It happens sometimes.