[Python-announce]ANN: Blue 0.7.0 Released

2021-08-16 Thread Grant Jenks
f `LinkedIn <https://www.linkedin.com/>`_, the authors' gracious employer, and we intend to socialize its use within our company code base. Contributors ``blue`` thanks this list of contributors for all its wonderful goodness. * The `wonderful folks <https://github.com/psf/bl

ANN: Blue 0.6.0 Released

2021-02-12 Thread Grant Jenks
cialize its use within our company code base. Contributors ``blue`` thanks this list of contributors for all its wonderful goodness. * The `wonderful folks <https://github.com/psf/black#authors>`_ from the ``black`` project. * Grant Jenks * Barry Warsaw * Corey from FutureSp

ANN: Blue 0.5.1 Released

2021-01-16 Thread Grant Jenks
onderful folks <https://github.com/psf/black#authors>`_ from the ``black`` project. * Grant Jenks * Barry Warsaw ``blue`` is licensed under the terms of the Apache License Version 2.0. ``black`` is `licensed <https://github.com/psf/black#license>`_ under the terms of the MIT licens

ANN: DiskCache 4.0.0 Released

2019-07-08 Thread Grant Jenks
Announcing the release of DiskCache version 4.0.0 What is DiskCache? [DiskCache][1] is an Apache2 licensed disk and file backed cache library, written in pure-Python, and compatible with Django. By leveraging a rock-solid database library and memory-mapped files, cache performance can match

[issue37134] Use PEP570 syntax in the documentation

2019-06-04 Thread Grant Jenks
Grant Jenks added the comment: Pablo, I never intended disrespect toward you personally. And I am sorry my words came across that way. I would rather the feature be one of Python's more esoteric qualities. I think Carol has described the most reasonable way forward. And in particular, I

[issue37134] [EASY] Use PEP570 syntax in the documentation

2019-06-03 Thread Grant Jenks
Grant Jenks added the comment: FWIW, I would rather not see the docs littered with "/". I've taught Python to hundreds of professional software engineers over the last five years and in all that time nobody has ever asked when the args need to be positional. It's easy to experime

[issue34055] IDLE: erroneous 'smart' indents in shell

2019-01-02 Thread Grant Jenks
Grant Jenks added the comment: This issue was closed but I still see the problem in 3.7.2. Here's a snippet with line numbers from IDLE: 01 Python 3.7.2 (default, Dec 30 2018, 08:59:00) 02 [Clang 9.1.0 (clang-902.0.39.2)] on darwin 03 Type "help", "copyright", &

[issue35196] IDLE text squeezer is too aggressive and is slow

2018-12-16 Thread Grant Jenks
Change by Grant Jenks : -- nosy: +grantjenks ___ Python tracker <https://bugs.python.org/issue35196> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34549] unittest docs could use another header

2018-09-03 Thread Grant Jenks
Change by Grant Jenks : -- nosy: +grantjenks ___ Python tracker <https://bugs.python.org/issue34549> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34445] asyncio support in doctests

2018-08-30 Thread Grant Jenks
Grant Jenks added the comment: This is not a bug in Python. The SyntaxError matches expected behavior. According to the Python grammar, you can't have "await" outside of a function. You have "await" at the globals scope which is not permitted. You may only "awa

[issue14841] os.get_terminal_size() should check stdin as a fallback

2018-08-21 Thread Grant Jenks
Grant Jenks added the comment: I asked on the ncurses maintainers email list about their logic and was pointed to tty_settings.c which checks: 1. stderr 2. stdout 3. stdin 4. open('/dev/tty', 'r+') I don't know a cross-platform way to check #4 but I think #1-3 are a reasonable change

[issue34055] IDLE inserts extra blank line in prompt after SyntaxError

2018-07-05 Thread Grant Jenks
New submission from Grant Jenks : IDLE inserts an extra blank line after the prompt after encountering a SyntaxError: ``` >>> 1 + 2 3 >>> print('Hello') Hello v-- Missing single quote! >>> d = {1: 'uno', 2: 'dos', 3: 'tres}

ANN: Sorted Containers 2.0.3 Released

2018-06-01 Thread Grant Jenks
Announcing the release of Sorted Containers version 2.0.3 What is Sorted Containers? -- Sorted Containers is an Apache2-licensed, pure-Python implementation of sorted list, sorted dict, and sorted set data types that is fast-as-C implementations with 100% code coverage

[issue23666] Add shell session logging option to IDLE

2017-09-18 Thread Grant Jenks
Grant Jenks added the comment: +1 from me. I'd like to see it ask me to save when I close the window if I've already saved once. -- nosy: +grantjenks ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/i

ANN: DiskCache 2.0.2 Released

2016-09-12 Thread Grant Jenks
Announcing the release of DiskCache version 2.0.2 What is DiskCache? [DiskCache][1] is an Apache2 licensed disk and file backed cache library, written in pure-Python, and compatible with Django. By leveraging a rock-solid database library and memory-mapped files, cache performance can match

ANN: SortedContainers 1.5.2 Released

2016-05-30 Thread Grant Jenks
Announcing the release of SortedContainers version 1.5.2 What is SortedContainers? - SortedContainers is an Apache2-licensed, pure-Python implementation of sorted list, sorted dict, and sorted set data types that is fast-as-C implementations with 100% code coverage and

ANN: DiskCache 1.6.3 Released

2016-03-21 Thread Grant Jenks
Announcing the release of DiskCache version 1.6.3 What is DiskCache? [DiskCache][1] is an Apache2 licensed disk and file backed cache library, written in pure-Python, and compatible with Django. By leveraging a rock-solid database library and memory-mapped files, cache performance can match

ANN: Tribool 0.6.2 Released

2015-09-15 Thread Grant Jenks
Announcing the Release of Tribool Version 0.6.2 What is Tribool? Tribool is an Apache2 licensed module for three-valued logic. More commonly found in SQL, three-valued logic defines truth tables over the values True, False, and Indeterminate. The third value is considered a

ANN: WordSegment 0.5.2 Released

2015-09-02 Thread Grant Jenks
Announcing the Release of WordSegment Version 0.5.2 What is WordSegment? - WordSegment is an Apache2 licensed module for English word segmentation, written in pure-Python, and based on a trillion-word corpus. Based on code from the chapter “Natural Language Corpus Data”

ANN: SortedContainers 0.9.6 released

2015-06-23 Thread Grant Jenks
Announcing the release of SortedContainers version 0.9.6 What is SortedContainers? - SortedContainers is an Apache2-licensed, pure-Python implementation of sorted list, sorted dict, and sorted set data types that is fast-as-C implementations with 100% code coverage and

ANN: SortedContainers 0.9.5 released

2015-03-16 Thread Grant Jenks
://www.grantjenks.com/docs/sortedcontainers/ - Download: https://pypi.python.org/pypi/sortedcontainers - Source: https://github.com/grantjenks/sorted_containers - Issues: https://github.com/grantjenks/sorted_containers/issues This release is backwards-compatible. Please upgrade. Grant Jenks -- https