Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #10618
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!newsfeed.CARNet.hr!gregory.BNet.hr!busola.homelinux.net!not-for-mail |
|---|---|
| From | Hrvoje Niksic <hniksic@xemacs.org> |
| Newsgroups | comp.lang.python |
| Subject | Re: list comprehension to do os.path.split_all ? |
| Date | Sun, 31 Jul 2011 08:42:27 +0200 |
| Organization | B.net Hrvatska d.o.o. |
| Lines | 22 |
| Message-ID | <87ei17uf1o.fsf@xemacs.org> (permalink) |
| References | <1954d20a-7177-45d9-afa0-e98b171b2822@w27g2000yqk.googlegroups.com> <j0sjig$5dj$1@dough.gmane.org> <CALwzidkv93zGmY7M0CjZ=cGsQfLnY-J5eiirruR4G4sd_DJw_w@mail.gmail.com> <mailman.1603.1311912962.1164.python-list@python.org> <99fo1mFqeeU6@mid.individual.net> |
| NNTP-Posting-Host | cpe-94-253-191-228.zg.cable.xnet.hr |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| X-Trace | gregory.bnet.hr 1312094702 24706 94.253.191.228 (31 Jul 2011 06:45:02 GMT) |
| X-Complaints-To | abuse@globalnet.hr |
| NNTP-Posting-Date | Sun, 31 Jul 2011 06:45:02 +0000 (UTC) |
| User-Agent | Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) |
| Cancel-Lock | sha1:2W1NX5xpQN6XnsgftZ1sCMHdDFM= |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:10618 |
Show key headers only | View raw
Neil Cerutti <neilc@norwich.edu> writes: > On 2011-07-29, Dennis Lee Bieber <wlfraed@ix.netcom.com> wrote: >> Fine... So normpath it first... >> >>>>> os.path.normpath(r'C:/windows').split(os.sep) >> ['C:', 'windows'] That apparently doesn't distinguish between r'C:\windows' and r'C:windows'. On Windows the first is an absolute path, the second a relative path, and both contain a drive letter. > while tail != '': > retval.append(tail) > head, tail = os.path.split(head) > else: > if os.path.isabs(path): > retval.append(os.path.sep) > return list(reversed(retval)) Note that using 'else' after 'while' is superfluous if the loop doesn't contain a 'break' statement.
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
list comprehension to do os.path.split_all ? gry <georgeryoung@gmail.com> - 2011-07-28 13:18 -0700
Re: list comprehension to do os.path.split_all ? Stefaan Himpe <stefaan.himpe@gmail.com> - 2011-07-28 22:32 +0200
Re: list comprehension to do os.path.split_all ? Neil Cerutti <neilc@norwich.edu> - 2011-07-28 20:36 +0000
Re: list comprehension to do os.path.split_all ? Ethan Furman <ethan@stoneleaf.us> - 2011-07-28 14:03 -0700
Re: list comprehension to do os.path.split_all ? Alan Meyer <ameyer2@yahoo.com> - 2011-07-28 16:40 -0400
Re: list comprehension to do os.path.split_all ? TheSaint <no@nowhere.net.no> - 2011-07-29 22:29 +0800
Re: list comprehension to do os.path.split_all ? Ian Kelly <ian.g.kelly@gmail.com> - 2011-07-28 14:44 -0600
Re: list comprehension to do os.path.split_all ? Ian Kelly <ian.g.kelly@gmail.com> - 2011-07-28 14:47 -0600
Re: list comprehension to do os.path.split_all ? Ian Kelly <ian.g.kelly@gmail.com> - 2011-07-28 15:04 -0600
Re: list comprehension to do os.path.split_all ? Alexander Kapps <alex.kapps@web.de> - 2011-07-28 23:06 +0200
Re: list comprehension to do os.path.split_all ? Emile van Sebille <emile@fenx.com> - 2011-07-28 14:15 -0700
Re: list comprehension to do os.path.split_all ? Ian Kelly <ian.g.kelly@gmail.com> - 2011-07-28 15:31 -0600
Re: list comprehension to do os.path.split_all ? Carl Banks <pavlovevidence@gmail.com> - 2011-07-29 12:30 -0700
Re: list comprehension to do os.path.split_all ? Alexander Kapps <alex.kapps@web.de> - 2011-07-29 22:22 +0200
Re: list comprehension to do os.path.split_all ? Michael Poeltl <michael.poeltl@univie.ac.at> - 2011-07-30 02:23 +0200
Re: list comprehension to do os.path.split_all ? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-07-30 10:55 +1000
Re: list comprehension to do os.path.split_all ? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2011-07-29 22:17 -0700
Re: list comprehension to do os.path.split_all ? Michael Poeltl <michael.poeltl@univie.ac.at> - 2011-07-31 07:40 +0200
Re: list comprehension to do os.path.split_all ? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2011-07-28 21:15 -0700
Re: list comprehension to do os.path.split_all ? Neil Cerutti <neilc@norwich.edu> - 2011-07-29 12:40 +0000
Re: list comprehension to do os.path.split_all ? Hrvoje Niksic <hniksic@xemacs.org> - 2011-07-31 08:42 +0200
csiph-web