Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-25 Thread John O'Connor
+1 FileSystemError - For already stated reasons.

- John
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-24 Thread Stephen J. Turnbull
Nick Coghlan writes:

  Since I tend to use the one word 'filesystem' form myself (ditto for
  'filename'), I'm +1 for FilesystemError, but I'm only -0 for
  FileSystemError (so I expect that will be the option chosen, given
  other responses).

I slightly prefer FilesystemError because it parses unambiguously.
Cf. FileSystemError vs FileUserError.
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-24 Thread Cameron Simpson
On 24Aug2011 12:31, Nick Coghlan ncogh...@gmail.com wrote:
| On Wed, Aug 24, 2011 at 5:19 AM, Steven D'Aprano st...@pearwood.info wrote:
|  Antoine Pitrou wrote:
|  When reviewing the PEP 3151 implementation (*), Ezio commented that
|  FileSystemError looks a bit strange and that FilesystemError would
|  be a better spelling. What is your opinion?
| 
|  It's a file system (two words), not filesystem (not in any dictionary or
|  spell checker I've ever used).
| 
| I rarely find spell checkers to be useful sources of data on correct
| spelling of technical jargon (and the computing usage of the term
| 'filesystem' definitely qualifies as jargon).
| 
|  (Nor do we write filingsystem, governmentsystem, politicalsystem or
|  schoolsystem. This is English, not German.)
| 
| Personally, I think 'filesystem' is a portmanteau in the process of
| coming into existence (as evidenced by usage like 'FHS' standing for
| 'Filesystem Hierarchy Standard'). However, the two word form is still
| useful at times, particularly for disambiguation of acronyms (as
| evidenced by usage like 'NFS' and 'GFS' for 'Network File System' and
| 'Google File System').

Funny, I thought NFS stood for Not a File System :-)

| Since I tend to use the one word 'filesystem' form myself (ditto for
| 'filename'), I'm +1 for FilesystemError, but I'm only -0 for
| FileSystemError (so I expect that will be the option chosen, given
| other responses).

I also use filesystem as a one word piece of jargon, but I am
persuaded by the language arguments. So I'm +1 for FileSystemError.

Cheers,
-- 
Cameron Simpson c...@zip.com.au DoD#743
http://www.cskk.ezoshosting.com/cs/

Bolts get me through times of no courage better than courage gets me
through times of no bolts!
- Eric Hirst e...@u.washington.edu
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-24 Thread Eli Bendersky
 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

 (*) http://bugs.python.org/issue12555


+1 for FileSystemError

Eli
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-24 Thread Vlad Riscutia
+1 for FileSystemError. I see myself misspelling it as FileSystemError if we
go with alternate spelling. I'll probably won't be the only one.

Thank you,
Vlad

On Wed, Aug 24, 2011 at 4:09 AM, Eli Bendersky eli...@gmail.com wrote:


 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

 (*) http://bugs.python.org/issue12555


 +1 for FileSystemError

 Eli



 ___
 Python-Dev mailing list
 Python-Dev@python.org
 http://mail.python.org/mailman/listinfo/python-dev
 Unsubscribe:
 http://mail.python.org/mailman/options/python-dev/riscutiavlad%40gmail.com


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Antoine Pitrou

Hello,

When reviewing the PEP 3151 implementation (*), Ezio commented that
FileSystemError looks a bit strange and that FilesystemError would
be a better spelling. What is your opinion?

(*) http://bugs.python.org/issue12555

Thank you

Antoine.


___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Sandro Tosi
On Tue, Aug 23, 2011 at 20:20, Antoine Pitrou solip...@pitrou.net wrote:
 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

FilesystemError.

Cheers,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Ross Lagerwall
 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

I don't think it really matters since both file system and
filesystem appear to be in common usage.

I would say +1 to FileSystemError -- i.e. take file system as two
words.

Cheers
Ross

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Nadeem Vawda
On Tue, Aug 23, 2011 at 8:39 PM, Ross Lagerwall rosslagerw...@gmail.com wrote:
 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

I think FilesystemError looks nicer, but it's not something I'd lose
sleep over either way.

Cheers,
Nadeem
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Brian Curtin
On Tue, Aug 23, 2011 at 13:20, Antoine Pitrou solip...@pitrou.net wrote:


 Hello,

 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

 (*) http://bugs.python.org/issue12555

 Thank you

 Antoine.


I don't care all that much but I'm reminded of the .NET FileSystemWatcher
class, so put me down for +0.5 on FileSystemError.
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Barry Warsaw
On Aug 23, 2011, at 08:39 PM, Ross Lagerwall wrote:

 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

I don't think it really matters since both file system and
filesystem appear to be in common usage.

I would say +1 to FileSystemError -- i.e. take file system as two
words.

My online dictionaries prefer file system to be two words, so for me,
FileSystemError is preferred.

-Barry


signature.asc
Description: PGP signature
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Ethan Furman

Antoine Pitrou wrote:

Hello,

When reviewing the PEP 3151 implementation (*), Ezio commented that
FileSystemError looks a bit strange and that FilesystemError would
be a better spelling. What is your opinion?


FileSystemError
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Stefan Krah
Barry Warsaw ba...@python.org wrote:
 My online dictionaries prefer file system to be two words, so for me,
 FileSystemError is preferred.

+1


Stefan Krah



___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Steven D'Aprano

Antoine Pitrou wrote:

Hello,

When reviewing the PEP 3151 implementation (*), Ezio commented that
FileSystemError looks a bit strange and that FilesystemError would
be a better spelling. What is your opinion?


It's a file system (two words), not filesystem (not in any dictionary or 
spell checker I've ever used).


(Nor do we write filingsystem, governmentsystem, politicalsystem or 
schoolsystem. This is English, not German.)




--
Steven

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Vinay Sajip
Antoine Pitrou solipsis at pitrou.net writes:

 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

+1 for FileSystemError as I, like others, don't regard filesystem as a proper
word.

Regards,

Vinay Sajip

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Laurens Van Houtven
On Tue, Aug 23, 2011 at 8:46 PM, Barry Warsaw ba...@python.org wrote:

 On Aug 23, 2011, at 08:39 PM, Ross Lagerwall wrote:

  When reviewing the PEP 3151 implementation (*), Ezio commented that
  FileSystemError looks a bit strange and that FilesystemError would
  be a better spelling. What is your opinion?
 
 I don't think it really matters since both file system and
 filesystem appear to be in common usage.
 
 I would say +1 to FileSystemError -- i.e. take file system as two
 words.

 My online dictionaries prefer file system to be two words, so for me,
 FileSystemError is preferred.

 -Barry

 ___
 Python-Dev mailing list
 Python-Dev@python.org
 http://mail.python.org/mailman/listinfo/python-dev
 Unsubscribe: http://mail.python.org/mailman/options/python-dev/_%40lvh.cc


+1

-- 
cheers
lvh
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Terry Reedy

On 8/23/2011 2:46 PM, Brian Curtin wrote:


I don't care all that much but I'm reminded of the .NET
FileSystemWatcher class, so put me down for +0.5 on FileSystemError.


For other reasons, I am at lease +.5 for FileSystemError also.


--
Terry Jan Reedy

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Nick Coghlan
On Wed, Aug 24, 2011 at 5:19 AM, Steven D'Aprano st...@pearwood.info wrote:
 Antoine Pitrou wrote:

 Hello,

 When reviewing the PEP 3151 implementation (*), Ezio commented that
 FileSystemError looks a bit strange and that FilesystemError would
 be a better spelling. What is your opinion?

 It's a file system (two words), not filesystem (not in any dictionary or
 spell checker I've ever used).

I rarely find spell checkers to be useful sources of data on correct
spelling of technical jargon (and the computing usage of the term
'filesystem' definitely qualifies as jargon).

 (Nor do we write filingsystem, governmentsystem, politicalsystem or
 schoolsystem. This is English, not German.)

Personally, I think 'filesystem' is a portmanteau in the process of
coming into existence (as evidenced by usage like 'FHS' standing for
'Filesystem Hierarchy Standard'). However, the two word form is still
useful at times, particularly for disambiguation of acronyms (as
evidenced by usage like 'NFS' and 'GFS' for 'Network File System' and
'Google File System'). The Wikipedia article on the topic mixes and
matches the two forms, but overall does favour the two word form.

Since I tend to use the one word 'filesystem' form myself (ditto for
'filename'), I'm +1 for FilesystemError, but I'm only -0 for
FileSystemError (so I expect that will be the option chosen, given
other responses).

Regards,
Nick.

-- 
Nick Coghlan   |   ncogh...@gmail.com   |   Brisbane, Australia
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] FileSystemError or FilesystemError?

2011-08-23 Thread Ezio Melotti

On 24/08/2011 5.31, Nick Coghlan wrote:

On Wed, Aug 24, 2011 at 5:19 AM, Steven D'Apranost...@pearwood.info  wrote:

(Nor do we write filingsystem, governmentsystem, politicalsystem or
schoolsystem. This is English, not German.)

Personally, I think 'filesystem' is a portmanteau in the process of
coming into existence (as evidenced by usage like 'FHS' standing for
'Filesystem Hierarchy Standard'). However, the two word form is still
useful at times, particularly for disambiguation of acronyms (as
evidenced by usage like 'NFS' and 'GFS' for 'Network File System' and
'Google File System'). The Wikipedia article on the topic mixes and
matches the two forms, but overall does favour the two word form.

Since I tend to use the one word 'filesystem' form myself (ditto for
'filename'), I'm +1 for FilesystemError, but I'm only -0 for
FileSystemError (so I expect that will be the option chosen, given
other responses).


This pretty much summarizes my thoughts.  I saw the wiki article using 
both and since I consider 'filesystem' a single word I was wondering if 
anyone else preferred FilesystemError.  I'm totally fine with 
FileSystemError too though, if most people prefer it.


Best Regards,
Ezio Melotti



Regards,
Nick.



___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com