home.social

Search

491 results for “nedbat”

  1. Sweet! @nedbat released new #coveragepy supporting a dedicated `.coveragerc.toml` config in the default discovery mechanism!

    I should now `pip install 'coverage >= 7.13.0'` everywhere!

    #Python

  2. Sweet! @nedbat released new #coveragepy supporting a dedicated `.coveragerc.toml` config in the default discovery mechanism!

    I should now `pip install 'coverage >= 7.13.0'` everywhere!

    #Python

  3. Sweet! @nedbat released new #coveragepy supporting a dedicated `.coveragerc.toml` config in the default discovery mechanism!

    I should now `pip install 'coverage >= 7.13.0'` everywhere!

    #Python

  4. Sweet! @nedbat released new #coveragepy supporting a dedicated `.coveragerc.toml` config in the default discovery mechanism!

    I should now `pip install 'coverage >= 7.13.0'` everywhere!

    #Python

  5. Sweet! @nedbat released new #coveragepy supporting a dedicated `.coveragerc.toml` config in the default discovery mechanism!

    I should now `pip install 'coverage >= 7.13.0'` everywhere!

    #Python

  6. PSA at : is starting again and @nedbat of the Editorial Board is giving a presentation

  7. Leaving time and leaving space are both inclusive. Let others join your conversation, by leaving a slice of physical space, and making space in your conversation with a little silence.

    “Silence is golden.”

    💜

    @nedbat

  8. Leaving time and leaving space are both inclusive. Let others join your conversation, by leaving a slice of physical space, and making space in your conversation with a little silence.

    “Silence is golden.”

    💜

    @nedbat #PyConUS #lightningtalks

  9. Leaving time and leaving space are both inclusive. Let others join your conversation, by leaving a slice of physical space, and making space in your conversation with a little silence.

    “Silence is golden.”

    💜

    @nedbat #PyConUS #lightningtalks

  10. Leaving time and leaving space are both inclusive. Let others join your conversation, by leaving a slice of physical space, and making space in your conversation with a little silence.

    “Silence is golden.”

    💜

    @nedbat #PyConUS #lightningtalks

  11. Leaving time and leaving space are both inclusive. Let others join your conversation, by leaving a slice of physical space, and making space in your conversation with a little silence.

    “Silence is golden.”

    💜

    @nedbat #PyConUS #lightningtalks

  12. There are a couple more open spaces at #PyConUS at 03:00 PM:

    S-4: Python Dataclasses and Serialization
    S-5: Local agents & adding type annotations everywhere for ~free

    And starting at 03:45 PM, there's a juggling open space hosted by @nedbat hallway outside room 103. There's no experience necessary and it's always a fun open space.

    #PyConUSOpenSpaces

  13. There are a couple more open spaces at #PyConUS at 03:00 PM:

    S-4: Python Dataclasses and Serialization
    S-5: Local agents & adding type annotations everywhere for ~free

    And starting at 03:45 PM, there's a juggling open space hosted by @nedbat hallway outside room 103. There's no experience necessary and it's always a fun open space.

    #PyConUSOpenSpaces

  14. There are a couple more open spaces at #PyConUS at 03:00 PM:

    S-4: Python Dataclasses and Serialization
    S-5: Local agents & adding type annotations everywhere for ~free

    And starting at 03:45 PM, there's a juggling open space hosted by @nedbat hallway outside room 103. There's no experience necessary and it's always a fun open space.

    #PyConUSOpenSpaces

  15. There are a couple more open spaces at #PyConUS at 03:00 PM:

    S-4: Python Dataclasses and Serialization
    S-5: Local agents & adding type annotations everywhere for ~free

    And starting at 03:45 PM, there's a juggling open space hosted by @nedbat hallway outside room 103. There's no experience necessary and it's always a fun open space.

    #PyConUSOpenSpaces

  16. Here's a description of some nice features I didn't know about in #PyTest's parameterize() decorator. My favourite is how to avoid really long names for test cases.

    nedbatchelder.com/blog/202602/

    #python

  17. New blog post: harihareswara.net/posts/2024/c

    - The distinction between detailed changelogs and brief release notes (with examples)

    - Why it's worth doing both

    - Why relying solely on GitHub as a project's communication platform discourages publishing and reading release notes

    Spurred by @nedbat 's hachyderm.io/@nedbat/113152493 , with references to @wiredferret @kfogel @leonardr @agateau @olivierlacan @xavdid @zwol @zulip and more.

    #maintainers #opensource #FLOSS #maintainership #documentation

  18. Anyone looking for a #Python 🐍 project to contribute to?

    We have a nice issue in @coveragepy (a great tool for measuring Python code coverage): github.com/nedbat/coveragepy/i

    If you'd like to help, I can assist you setting things up, understanding the code and the issue.

    Even if you don't think you can help, I can guide you and explain whatever you want to understand about the code/issue, no strings attached.

    Boosting for visibility also helps!

    #Coverage #CodeCoverage

  19. @coveragepy can now use Python 3.12's new sys.monitoring module with much lower overhead.

    On 3.12, it's about the same as if you were running tests *without* coverage enabled!

    nedbatchelder.com/blog/202312/

    With 7.4.2, you can set COVERAGE_CORE=sysmon globally on your CI, and it'll only use it where available (Python 3.12 and 3.13 alpha), and use the default for 3.11 and older.

    For example, @pillow is 9% - 27% faster!

    github.com/python-pillow/Pillo

    #Python #coverage #CoveragePy #pytest #testing #CI