pylint 2.0 / astroid 2.0 released!

2018-07-15 Thread Claudiu Popa
Hi folks, The pylint team is happy to announce the release of pylint 2.0 and astroid 2.0! This release only works with Python 3.4+, while older pylint releases are still maintained for Python 2 compatibility, at least until next year. You can find more details about what's new in this release ov

Pylint 1.8 / Astroid 1.6 released!

2017-12-15 Thread Claudiu Popa
Hi folks! I'm happy to announce the release of Pylint 1.8, along with Astroid 1.6! This is going to be the last version that will work on Python 2. Starting with the next planned version, 2.0, we are going to support only Python 3.5+. 1.8 will most likely become a LTS release, with bug fixes bac

Pylint 1.7.0 was released

2017-04-13 Thread Claudiu Popa
Hey folks, We just released a new version of Pylint, 1.7.0, after a long period of time since the last release. You can find more details about what's new in this release over here: https://pylint.readthedocs.io/en/latest/whatsnew/1.7.html Thanks and enjoy, Claudiu -- https://mail.python.org/m

Pylint 1.6.0 released

2016-07-07 Thread Claudiu Popa
CQA/pylint/milestones Thank you and enjoy, Claudiu Popa -- https://mail.python.org/mailman/listinfo/python-list

Re: Pylint prefers list comprehension over filter...

2016-05-10 Thread Claudiu Popa
On Sunday, May 8, 2016 at 4:41:02 AM UTC+3, Terry Reedy wrote: > On 5/7/2016 3:17 PM, Christopher Reimer wrote: > > > For my purposes, I'm using the list comprehension over filter to keep > > pylint happy. > > How sad. The pylint developers arrogantly take it on themselves to > revise Python, a

Re: [Pylint-dev] Pylint 1.5.0 / Astroid 1.4.1 released

2015-12-01 Thread Claudiu Popa
On Tue, Dec 1, 2015 at 11:08 AM, Sylvain Thénault wrote: > On 01 décembre 01:42, Claudiu Popa wrote: >> Hello, > > Hi Claudiu, > >> I'm happy to announce you the release of Pylint 1.5.0, >> respectively Astroid 1.4.1. >> >> It's been over a ye

Pylint 1.5.0 / Astroid 1.4.1 released

2015-11-30 Thread Claudiu Popa
Hello, I'm happy to announce you the release of Pylint 1.5.0, respectively Astroid 1.4.1. It's been over a year since the last major release and the amount of changes that were brought into pylint in this time is humongous, with over 30 new checks and tons of bug fixes. I would like to use this

[ANN] Pylint 1.4.2 / Astroid 1.3.5 released

2015-03-11 Thread Claudiu Popa
Hello, I'm happy to announce the release of Pylint 1.4.2 and astroid 1.3.5. The following changes were included in these releases: For pylint: * Don't require a docstring for empty modules. Closes issue #261. * Fix a false positive with `too-few-format-args` string warning, emit

[ANN] Pylint 1.4.1 / Astroid 1.3.3 released

2015-01-16 Thread Claudiu Popa
Hello, It's my pleasure to announce the release of both Pylint 1.4.1 and Astroid 1.3.3 respectively. The following bug fixes and features made their way into Astroid 1.3.3: * Restore file_stream to a property, but deprecate it in favour of the newly added method Module.stream. *

Re: [Pylint-dev] [ANN] Pylint 1.4 released

2014-11-27 Thread Claudiu Popa
On Thu, Nov 27, 2014 at 5:19 PM, Ned Batchelder wrote: > On 11/23/14 4:45 AM, Claudiu Popa wrote: >> >> Hello! >> >> On behalf of the Pylint development team, I'm happy to announce that >> Pylint 1.4 has been released. >> >> This release has a

[ANN] Pylint 1.4 released

2014-11-23 Thread Claudiu Popa
Hello! On behalf of the Pylint development team, I'm happy to announce that Pylint 1.4 has been released. This release has a lot of improvements over the last one. One of the main differences is that support for Python versions < 2.7 has been droped, which allows us to support Python 2.7 and 3.3+

[ANN] Pylint 1.3.1 / Astroid 1.2.1 released

2014-08-24 Thread Claudiu Popa
Hello! I'm happy to announce that Pylint 1.3.1 and Astroid 1.2.1 were released. These releases include some bugfixes with the new string formatting checker and a couple of crash fixes. Please note that Pylint 1.3.X is the last version of Pylint which supports Python 2.5 and 2.6. Enjoy! -- https

[ANN] Pylint 1.3 / Astroid 1.2 released.

2014-07-28 Thread Claudiu Popa
Hello! I'm happy to announce that Pylint 1.3 and Astroid 1.2 were released at the end of the last week. There has been a lot of enhancements and bug fixes since the latest release, so you're strongly encouraged to upgrade. More information about the changes in this release can be found here: http:

Python hackathon ideas

2014-04-14 Thread Claudiu Popa
Hello! I'm planning a Python hackathon in my area, which will be held in a couple of weeks. Being my first organized hackathon, I don't quite know on what we will be working. One idea I have is to find a couple of open source projects and start contributing to them. Another idea is to work on Pyth

Re: What is this syntax ?

2011-06-20 Thread Claudiu Popa
Hello, Isn't this similar to php interpolation? And quite readable imo. >>> import string >>> template = string.Template("$scheme://$host:$port/$route#$fragment") >>> template.substitute(scheme="http", host="google.com", port="80", route="", >>> fragment="") 'http://google.com:80/#' >>> Roy Sm

Multiprocessing.connection magic

2011-06-02 Thread Claudiu Popa
Hello guys, While working at a dispatcher using multiprocessing.connection.Listener module I've stumbled upon some sortof magic trick that amazed me. How is this possible and what does multiprocessing library doing in background for this to work? Client, Python 2.6

Re: Custom string joining

2011-05-09 Thread Claudiu Popa
Hello Terry, Thanks, I understand now. Tuesday, May 10, 2011, 2:16:24 AM, you wrote: > On 5/9/2011 4:25 PM, Claudiu Popa wrote: >> I already told in the first post that I've implemented __str__ function, >> but it doesn't seems to be automatically called. > No,

Re: Custom string joining

2011-05-09 Thread Claudiu Popa
Hello Karim, > You just have to implement __str__() python special method for your > "custom_objects". > Regards > Karim >> Cheers, >> Chris >> -- >> http://rebertia.com I already told in the first post that I've implemented __str__ function, but it doesn't seems to be automatically called.

Custom string joining

2011-05-07 Thread Claudiu Popa
Hello Python-list, I have an object which defines some methods. I want to join a list or an iterable of those objects like this: new_string = "|".join(iterable_of_custom_objects) What is the __magic__ function that needs to be implemented for this case to work? I though that __str__

Re: Checking against NULL will be eliminated?

2011-03-03 Thread Claudiu Popa
Hello, Yes, root is an ElementTree Element. Thank you for your answer! -- Best regards, Claudiu Popa -- http://mail.python.org/mailman/listinfo/python-list

Checking against NULL will be eliminated?

2011-03-02 Thread Claudiu Popa
cific 'len(elem)' or 'elem is not None' test instead." Why is the reason for this idiom to be changed? -- -- Claudiu Popa -- http://mail.python.org/mailman/listinfo/python-list