[issue7585] difflib should separate filename from timestamp with tab

2010-05-13 Thread anatoly techtonik

anatoly techtonik techto...@gmail.com added the comment:

tag:difflib

--

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-13 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Yes, thanks for the typo correction.

--

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-12 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Applied to trunk in r8004 and py3k in r8006.

--
resolution: accepted - fixed
stage: unit test needed - committed/rejected
status: open - closed

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-12 Thread anatoly techtonik

anatoly techtonik techto...@gmail.com added the comment:

r80004 and r80006 to be exact. 

Great! Thanks! =)

--

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-07 Thread anatoly techtonik

anatoly techtonik techto...@gmail.com added the comment:

Added unittest for tab with and without set filedate.
Removed #7583 dependency with NORMALIZE_WHITESPACE.

--
Added file: http://bugs.python.org/file16797/issue7585.difflib-tab-unittest.diff

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-07 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Great, thanks.  I'll check this in when the branch is unfrozen.

--
dependencies:  -doctest should normalize tabs when comparing output

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-04 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

We could avoid the 7583 problem by making the doctests use NORMALIZE_WHITESPACE 
and moving the real *tests* into the unittests for the module.  I think that 
would be a good thing to do anyway.

--

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-03 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Your last patch looks the best to me.  I agree both that a tab should not be 
emitted if there is no date (which is what git, for example, does), and that 
ISO 8601 timestamps should be promoted as the preferred format.

As you pointed out, issue 7583 needs to be resolved before this can be applied.

In the meantime it would be nice to add an additional test for the 
no-tab-if-no-date case.

--
assignee:  - r.david.murray
nosy: +r.david.murray
resolution:  - accepted
stage: patch review - test needed

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-02 Thread anatoly techtonik

anatoly techtonik techto...@gmail.com added the comment:

Refreshed patches - feel free to apply in any order you want.

Convenience link for reviews:
http://codereview.appspot.com/809043/show

--

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-02 Thread anatoly techtonik

Changes by anatoly techtonik techto...@gmail.com:


Added file: 
http://bugs.python.org/file16732/issue7585.difflib-tab-update-docs.diff

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-02 Thread anatoly techtonik

Changes by anatoly techtonik techto...@gmail.com:


Removed file: 
http://bugs.python.org/file16732/issue7585.difflib-tab-update-docs.diff

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-02 Thread anatoly techtonik

Changes by anatoly techtonik techto...@gmail.com:


Added file: 
http://bugs.python.org/file16734/issue7585.difflib-tab-updoc-iso8601.diff

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-01 Thread R. David Murray

Changes by R. David Murray rdmur...@bitdance.com:


--
dependencies: +doctest should normalize tabs when comparing output
title: [patch] difflib should separate filename from timestamp with tab - 
difflib should separate filename from timestamp with tab

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-01 Thread anatoly techtonik

Changes by anatoly techtonik techto...@gmail.com:


Added file: 
http://bugs.python.org/file16730/issue7585.difflib-tab-separator.diff

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



[issue7585] difflib should separate filename from timestamp with tab

2010-04-01 Thread anatoly techtonik

Changes by anatoly techtonik techto...@gmail.com:


Added file: 
http://bugs.python.org/file16731/issue7585.difflib-tab-separator-no-trail.diff

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