This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Fix indentation in memoryobject.c
Type: behavior Stage:
Components: Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, georg.brandl, pitrou
Priority: low Keywords: patch

Created on 2009-01-03 17:14 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
reindent-memview.patch pitrou, 2009-01-03 18:18
Messages (6)
msg78978 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-01-03 17:14
The rules state new files should be indented with 4-spaces, but
indentation has no consistent indentation: parts of it are indented with
tabs, others with spaces.
We could probably reindent it all with 4-spaces, especially since it
hasn't been backported to trunk yet (and the versions in py3k and 3.0
should be identical).
msg78981 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-01-03 17:55
I think this is the kind of reindention that Guido approved of on
python-dev, along with unicodeobject.c.
msg78982 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-01-03 18:00
+1
msg78986 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-01-03 18:18
Here's a patch.
msg78987 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-01-03 18:22
Do you expect a review? ;)
msg78994 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-01-03 19:29
Ok, committed.
History
Date User Action Args
2022-04-11 14:56:43adminsetgithub: 49072
2009-01-03 19:29:21pitrousetstatus: open -> closed
resolution: fixed
messages: + msg78994
2009-01-03 18:22:35georg.brandlsetmessages: + msg78987
2009-01-03 18:18:28pitrousetfiles: + reindent-memview.patch
keywords: + patch
messages: + msg78986
2009-01-03 18:00:27benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg78982
2009-01-03 17:55:31georg.brandlsetnosy: + georg.brandl
messages: + msg78981
2009-01-03 17:14:12pitroucreate