[issue19775] Provide samefile() on Path objects

2014-05-13 Thread Antoine Pitrou

Antoine Pitrou added the comment:

Sorry, it seems I have let this issue slip. I will update the patch and commit 
it soon!

--

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



[issue19775] Provide samefile() on Path objects

2014-05-13 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 197ac5d79456 by Antoine Pitrou in branch 'default':
Issue #19775: Add a samefile() method to pathlib Path objects.
http://hg.python.org/cpython/rev/197ac5d79456

--
nosy: +python-dev

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



[issue19775] Provide samefile() on Path objects

2014-05-13 Thread Antoine Pitrou

Changes by Antoine Pitrou pit...@free.fr:


--
resolution:  - fixed
stage:  - resolved
status: open - closed

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Antoine Pitrou

Antoine Pitrou added the comment:

Thanks for the patch! Some comments:

1. It should path objects as well as str objects.
2. I don't think you have to call resolve() here.
3. you should probably test what happens when one of the files doesn't exist
4. you need to update the documentation too

--

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Vajrasky Kok

Vajrasky Kok added the comment:

Thanks for the review!

Attached the patch addressing the request by Antoine.

--
Added file: http://bugs.python.org/file32977/pathlib_samefile_v3.patch

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Vajrasky Kok

Changes by Vajrasky Kok sky@speaklikeaking.com:


Removed file: http://bugs.python.org/file32977/pathlib_samefile_v3.patch

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Vajrasky Kok

Changes by Vajrasky Kok sky@speaklikeaking.com:


Added file: http://bugs.python.org/file32978/pathlib_samefile_v3.patch

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Vajrasky Kok

Changes by Vajrasky Kok sky@speaklikeaking.com:


Added file: http://bugs.python.org/file32979/pathlib_samefile_v3.patch

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



[issue19775] Provide samefile() on Path objects

2013-12-04 Thread Vajrasky Kok

Changes by Vajrasky Kok sky@speaklikeaking.com:


Removed file: http://bugs.python.org/file32978/pathlib_samefile_v3.patch

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



[issue19775] Provide samefile() on Path objects

2013-12-01 Thread Vajrasky Kok

Vajrasky Kok added the comment:

Updated grammar according to Arfrever's review. Thanks!

Anyway, should samefile accepts only string? Or should it accept Path object as 
well?

--
Added file: http://bugs.python.org/file32927/pathlib_samefile_v2.patch

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



[issue19775] Provide samefile() on Path objects

2013-11-30 Thread Vajrasky Kok

Vajrasky Kok added the comment:

Here is the patch.

--
keywords: +patch
nosy: +vajrasky
Added file: http://bugs.python.org/file32916/pathlib_samefile.patch

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



[issue19775] Provide samefile() on Path objects

2013-11-30 Thread Arfrever Frehtes Taifersar Arahesis

Arfrever Frehtes Taifersar Arahesis added the comment:

About doc string in patch:
1. s/same/the same/
2. same is usually used with as, not with:
   
https://books.google.com/ngrams/graph?content=same+as%2Csame+with%2Csame+toyear_start=1800year_end=2000corpus=15smoothing=3

--

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



[issue19775] Provide samefile() on Path objects

2013-11-27 Thread STINNER Victor

STINNER Victor added the comment:

I like the idea :-)

--
nosy: +gvanrossum, haypo

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



[issue19775] Provide samefile() on Path objects

2013-11-25 Thread Antoine Pitrou

New submission from Antoine Pitrou:

It would probably be useful to provide samefile() on Path objects - basically 
doing the same thing as os.path.samefile().

--
components: Library (Lib)
messages: 204386
nosy: pitrou
priority: normal
severity: normal
status: open
title: Provide samefile() on Path objects
type: enhancement
versions: Python 3.5

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



[issue19775] Provide samefile() on Path objects

2013-11-25 Thread Arfrever Frehtes Taifersar Arahesis

Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com:


--
nosy: +Arfrever

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