SlideShare une entreprise Scribd logo
1  sur  37
The Onward Journey:
Porting Twisted to Python 3
Craig Rodrigues
<rodrigc@crodrigues.org>
Twisted
What is Twisted?
Python library, written by Glyph Lefkowitz and many others
provides basic building blocks for writing networking clients and
servers:
protocol implementations: SSH, IRC, SMTP, IMAP
event “reactors”: select, kqueue, epoll, IOCP, asyncio…...
More resources
Web site with docs, examples, tutorials: http://www.twistedmatrix.com
Main code repository: https://github.com/twisted/twisted
O’Reilly book:
Twisted sub-projects
Klein (similar to Flask, Bottle) https://github.com/twisted/klein
Treq (similar to Requests) https://github.com/twisted/treq
Which projects Twisted?
buildbot
scrapy
Lots of other projects:
https://twistedmatrix.com/trac/wiki/ProjectsUsingTwisted
Who uses Twisted?
Hipchat
Apple Calendar Server
Lots of companies: https://twistedmatrix.com/trac/wiki/SuccessStories
Twisted and asynchronous programming
Twisted has promoted the technique of using callbacks and asynchronous
programming for writing network servers for a long time
Twisted’s Deferred class is central to this, and has been used extensively
Guido van Rossum consulted with Glyph in the design of Python’s new
asyncio framework ( Python 3.4 and higher )
Interesting things
First commit to Twisted was in 2001
Twisted includes a tool trial which runs unittest-style tests. (similar to pytest
or nose)
Unittests and code coverage are very important to Twisted development
process
Why bother?
Motivation
I like Twisted and the community behind it
I had some time in between jobs and wanted to improve my Python skills and
learn more about Python 3
I wanted to help out projects which depended on Twisted, but couldn’t move
to Python 3, such as buildbot
Core Python devs are dropping Python 2 support in 2020:
https://pythonclock.org/
Major motivation: Twisted moved to GitHub
in 2016!!
Following process to submit patches via Subversion was cumbersome
Moving to GitHub and pull requests made things easier for submitters and
reviewers
Integration with Continuous Integration (CI) was improved: codecov, travis,
appveyor, buildbot
Submitting patches is easier!!
Moving Twisted to GitHub
Moving to Python 3
Twisted started moving to Python 3
Original Python 3 porting plan developed in 2012
Worked on by various developers: Jean-Paul Calderone, Itamar Turner-
Trauring, Amber Brown, Glyph Lefkowitz, Ralph Meijer, and others
Canonical funded some Python 3 porting work
Some parts ported, many parts still unported
Moving Twisted to Python 3 is a tough job!
Old codebase (since 2001)
Advanced framework which uses many, many features of Python
Twisted development process requires unit tests and coverage
Submitting hundreds of patches in Subversion workflow was slow moving
Porting to Python 3
What has changed in Python 3?
Lots of little changes to make the language cleaner
Deprecated code has been removed
Some changes are backwards incompatible. Previously working code is now
broken on Python 3
http://python3porting.com has an extensive list of changes in Python 3
print is now a function
print “hello world”
now must be:
print(“hello world”)
dict.has_key() is gone
some_dict = { “one” : 1, “two”: 2}
some_dict.has_key(“one”)
Now should be:
“one” in some_dict
obj.__cmp__() and cmp() is gone
Developers are supposed to implement __lt__(), __gt__(), __ge__(), __le__(),
__ne__(), __eq__() functions on an object instead of __cmp__()
Developers need to use <, >, >=, <=, !=, == operators instead of cmp() which is
gone
Less things allocate lists
These functions no longer allocate lists in Python 3:
range(), dict.items(), dict.values(), map(), filter()
Users should iterate over these functions, which only allocate items as they
are needed:
for n in range(99):
...
C API for Python C extensions changed
C API changed in a backwards incompatible way
Very challenging when porting the Twisted IOCP reactor (Windows only)
which has parts written in C
Python str type has changed
Python 2:
u”Some unicode string 銩” is of type unicode
“Some string” is of type str and also of type bytes
b”Some string” is of type str and also of type bytes
type(unicode) != type(str), type(str) == type(bytes)
Python 3:
u”Some string 銩” is of type str
Python str type has changed
Twisted protocols must send out bytes over the wire on sockets
Lots of code written assuming type(str) == type(bytes), did not account for
unicode
This type of porting needs extensive analysis and testing, cannot be
automated
Python str type has changed
Ned Batchelder unicode presentation very good:
https://nedbatchelder.com/text/unipain/unipain.html
“Unicode sandwich” technique (write bytes to sockets and files, keep data as
unicode internally in application) cannot be used 100% when dealing with
network protocols
Technique for porting to Python 3
Porting technique: use virtualenvs
Checkout the code from git
Create a python2 virtualenv in one window:
virtualenv myenv_2
source myenv_2/bin/activate
python setup.py develop
Create a python3 virtualenv in another window:
python3 -m venv myenv_3
Porting technique: run unit tests
After modifying code, run unittests using tox and trial
See what breaks, make sure it works on Python 2.7 and Python 3
Write new unit tests if necessary
Always try to improve code coverage:
https://codecov.io/gh/twisted/twisted/
Python 3 status for Twisted
June 3, 2016
Python 2.7: 8425 tests PASS
Python 3.5: 4834 tests PASS ( approx. 57% of Python 2.7 tests)
March 21, 2017
Python 2.7: 9692 tests PASS
Python 3.5: 9025 tests PASS ( approx. 93% of Python 2.7 tests)
My contributions: 325 pull requests!
What’s left?
A few modules need to be ported such as:
twisted.mail
twisted.news
twisted.web
Lessons learned
What I learned
Extensive unittests and code coverage are very important for this kind of
effort
Porting an old and large codebase to Python 3 can be a lot of work
Benefits of porting: code cleanliness and keeping up with Python
direction...the benefits vs. the effort required sometimes doesn’t feel worth
it
Hope for the future and performance
CPython 3.6 and 3.7 performance seems to be improving and is comparable
to Python 2.7:
http://speed.python.org
Pypy 3.5 just came out….hopefully better performance with that
Now that Python has asyncio built in, the “Twisted way” of doing things has
some validation, and is pervading more libraries and projects in Python
Thanks
All who started before me on the Python 3 effort: Jean-Paul, Itamar, Amber,
Glyph, Ralph, many others
All who helped code review my patches: Adi Roiban, Alex Gaynor, Glyph,
many others
Special thanks to Abhishek Choudhary for help on code reviews

Contenu connexe

Tendances

How to integrate python into a scala stack
How to integrate python into a scala stackHow to integrate python into a scala stack
How to integrate python into a scala stack
Fliptop
 
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
PyData
 
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
ISSEL
 

Tendances (18)

Python Summer Internship
Python Summer InternshipPython Summer Internship
Python Summer Internship
 
Py Con 2009 Pumping Iron Into Python
Py Con 2009   Pumping Iron Into PythonPy Con 2009   Pumping Iron Into Python
Py Con 2009 Pumping Iron Into Python
 
Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...
 
Getting started with Linux and Python by Caffe
Getting started with Linux and Python by CaffeGetting started with Linux and Python by Caffe
Getting started with Linux and Python by Caffe
 
How to integrate python into a scala stack
How to integrate python into a scala stackHow to integrate python into a scala stack
How to integrate python into a scala stack
 
Introduction to python
 Introduction to python Introduction to python
Introduction to python
 
First python project
First python projectFirst python project
First python project
 
Python Tutorial Part 2
Python Tutorial Part 2Python Tutorial Part 2
Python Tutorial Part 2
 
Introduction to Python Programing
Introduction to Python ProgramingIntroduction to Python Programing
Introduction to Python Programing
 
The State of libfabric in Open MPI
The State of libfabric in Open MPIThe State of libfabric in Open MPI
The State of libfabric in Open MPI
 
Numerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using MetaforNumerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using Metafor
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
 
Ecet 365 Education Redefined - snaptutorial.com
Ecet 365    Education Redefined - snaptutorial.comEcet 365    Education Redefined - snaptutorial.com
Ecet 365 Education Redefined - snaptutorial.com
 
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
 
Open Source .NET
Open Source .NETOpen Source .NET
Open Source .NET
 
Python course syllabus
Python course syllabusPython course syllabus
Python course syllabus
 
Intro to Python
Intro to PythonIntro to Python
Intro to Python
 

En vedette

En vedette (19)

Travel retail pos guide
Travel retail pos guideTravel retail pos guide
Travel retail pos guide
 
Odalisque in the harem garden
Odalisque in the harem gardenOdalisque in the harem garden
Odalisque in the harem garden
 
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
 
Kyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSDKyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSD
 
The Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsThe Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer Interviews
 
ELSA France "Teaching is us!"
ELSA France "Teaching is us!" ELSA France "Teaching is us!"
ELSA France "Teaching is us!"
 
The Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax DeductionsThe Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax Deductions
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with Data
 
Alo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration LessonsAlo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration Lessons
 
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
 
77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric Lofholm77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric Lofholm
 
ATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITEDATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITED
 
Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)
 
Google data studio eshow 2017 clinicseo
Google data studio   eshow 2017 clinicseoGoogle data studio   eshow 2017 clinicseo
Google data studio eshow 2017 clinicseo
 
3 Benefits Of Hiring Marketing Contractors
3 Benefits Of Hiring Marketing Contractors3 Benefits Of Hiring Marketing Contractors
3 Benefits Of Hiring Marketing Contractors
 
Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !
 
Webinar Authority
Webinar AuthorityWebinar Authority
Webinar Authority
 
Dani sape96
Dani sape96Dani sape96
Dani sape96
 
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCEPORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
 

Similaire à The Onward Journey: Porting Twisted to Python 3

ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devsITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp
 

Similaire à The Onward Journey: Porting Twisted to Python 3 (20)

2to3
2to32to3
2to3
 
Dc ch02 : protocol architecture
Dc ch02 : protocol architectureDc ch02 : protocol architecture
Dc ch02 : protocol architecture
 
Git 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizationsGit 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizations
 
Socket programming-in-python
Socket programming-in-pythonSocket programming-in-python
Socket programming-in-python
 
Moving to Python 3
Moving to Python 3Moving to Python 3
Moving to Python 3
 
Python Evolution
Python EvolutionPython Evolution
Python Evolution
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptx
 
Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)
 
MODULE 1.pptx
MODULE 1.pptxMODULE 1.pptx
MODULE 1.pptx
 
CocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIsCocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIs
 
Building Data Pipelines in Python
Building Data Pipelines in PythonBuilding Data Pipelines in Python
Building Data Pipelines in Python
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python Extensions
 
Возможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OSВозможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OS
 
Python Linters at Scale.pdf
Python Linters at Scale.pdfPython Linters at Scale.pdf
Python Linters at Scale.pdf
 
.NET Core Today and Tomorrow
.NET Core Today and Tomorrow.NET Core Today and Tomorrow
.NET Core Today and Tomorrow
 
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoTInria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
 
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
 
PYTHON PROGRAMMING NOTES RKREDDY.pdf
PYTHON PROGRAMMING NOTES RKREDDY.pdfPYTHON PROGRAMMING NOTES RKREDDY.pdf
PYTHON PROGRAMMING NOTES RKREDDY.pdf
 
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devsITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
 
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
 

Dernier

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Dernier (20)

10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 

The Onward Journey: Porting Twisted to Python 3

  • 1. The Onward Journey: Porting Twisted to Python 3 Craig Rodrigues <rodrigc@crodrigues.org>
  • 3. What is Twisted? Python library, written by Glyph Lefkowitz and many others provides basic building blocks for writing networking clients and servers: protocol implementations: SSH, IRC, SMTP, IMAP event “reactors”: select, kqueue, epoll, IOCP, asyncio…...
  • 4. More resources Web site with docs, examples, tutorials: http://www.twistedmatrix.com Main code repository: https://github.com/twisted/twisted O’Reilly book:
  • 5. Twisted sub-projects Klein (similar to Flask, Bottle) https://github.com/twisted/klein Treq (similar to Requests) https://github.com/twisted/treq
  • 6. Which projects Twisted? buildbot scrapy Lots of other projects: https://twistedmatrix.com/trac/wiki/ProjectsUsingTwisted
  • 7. Who uses Twisted? Hipchat Apple Calendar Server Lots of companies: https://twistedmatrix.com/trac/wiki/SuccessStories
  • 8. Twisted and asynchronous programming Twisted has promoted the technique of using callbacks and asynchronous programming for writing network servers for a long time Twisted’s Deferred class is central to this, and has been used extensively Guido van Rossum consulted with Glyph in the design of Python’s new asyncio framework ( Python 3.4 and higher )
  • 9. Interesting things First commit to Twisted was in 2001 Twisted includes a tool trial which runs unittest-style tests. (similar to pytest or nose) Unittests and code coverage are very important to Twisted development process
  • 11. Motivation I like Twisted and the community behind it I had some time in between jobs and wanted to improve my Python skills and learn more about Python 3 I wanted to help out projects which depended on Twisted, but couldn’t move to Python 3, such as buildbot Core Python devs are dropping Python 2 support in 2020: https://pythonclock.org/
  • 12. Major motivation: Twisted moved to GitHub in 2016!! Following process to submit patches via Subversion was cumbersome Moving to GitHub and pull requests made things easier for submitters and reviewers Integration with Continuous Integration (CI) was improved: codecov, travis, appveyor, buildbot Submitting patches is easier!!
  • 15. Twisted started moving to Python 3 Original Python 3 porting plan developed in 2012 Worked on by various developers: Jean-Paul Calderone, Itamar Turner- Trauring, Amber Brown, Glyph Lefkowitz, Ralph Meijer, and others Canonical funded some Python 3 porting work Some parts ported, many parts still unported
  • 16. Moving Twisted to Python 3 is a tough job! Old codebase (since 2001) Advanced framework which uses many, many features of Python Twisted development process requires unit tests and coverage Submitting hundreds of patches in Subversion workflow was slow moving
  • 18. What has changed in Python 3? Lots of little changes to make the language cleaner Deprecated code has been removed Some changes are backwards incompatible. Previously working code is now broken on Python 3 http://python3porting.com has an extensive list of changes in Python 3
  • 19. print is now a function print “hello world” now must be: print(“hello world”)
  • 20. dict.has_key() is gone some_dict = { “one” : 1, “two”: 2} some_dict.has_key(“one”) Now should be: “one” in some_dict
  • 21. obj.__cmp__() and cmp() is gone Developers are supposed to implement __lt__(), __gt__(), __ge__(), __le__(), __ne__(), __eq__() functions on an object instead of __cmp__() Developers need to use <, >, >=, <=, !=, == operators instead of cmp() which is gone
  • 22. Less things allocate lists These functions no longer allocate lists in Python 3: range(), dict.items(), dict.values(), map(), filter() Users should iterate over these functions, which only allocate items as they are needed: for n in range(99): ...
  • 23. C API for Python C extensions changed C API changed in a backwards incompatible way Very challenging when porting the Twisted IOCP reactor (Windows only) which has parts written in C
  • 24. Python str type has changed Python 2: u”Some unicode string 銩” is of type unicode “Some string” is of type str and also of type bytes b”Some string” is of type str and also of type bytes type(unicode) != type(str), type(str) == type(bytes) Python 3: u”Some string 銩” is of type str
  • 25. Python str type has changed Twisted protocols must send out bytes over the wire on sockets Lots of code written assuming type(str) == type(bytes), did not account for unicode This type of porting needs extensive analysis and testing, cannot be automated
  • 26. Python str type has changed Ned Batchelder unicode presentation very good: https://nedbatchelder.com/text/unipain/unipain.html “Unicode sandwich” technique (write bytes to sockets and files, keep data as unicode internally in application) cannot be used 100% when dealing with network protocols
  • 27. Technique for porting to Python 3
  • 28. Porting technique: use virtualenvs Checkout the code from git Create a python2 virtualenv in one window: virtualenv myenv_2 source myenv_2/bin/activate python setup.py develop Create a python3 virtualenv in another window: python3 -m venv myenv_3
  • 29. Porting technique: run unit tests After modifying code, run unittests using tox and trial See what breaks, make sure it works on Python 2.7 and Python 3 Write new unit tests if necessary Always try to improve code coverage: https://codecov.io/gh/twisted/twisted/
  • 30. Python 3 status for Twisted
  • 31. June 3, 2016 Python 2.7: 8425 tests PASS Python 3.5: 4834 tests PASS ( approx. 57% of Python 2.7 tests)
  • 32. March 21, 2017 Python 2.7: 9692 tests PASS Python 3.5: 9025 tests PASS ( approx. 93% of Python 2.7 tests) My contributions: 325 pull requests!
  • 33. What’s left? A few modules need to be ported such as: twisted.mail twisted.news twisted.web
  • 35. What I learned Extensive unittests and code coverage are very important for this kind of effort Porting an old and large codebase to Python 3 can be a lot of work Benefits of porting: code cleanliness and keeping up with Python direction...the benefits vs. the effort required sometimes doesn’t feel worth it
  • 36. Hope for the future and performance CPython 3.6 and 3.7 performance seems to be improving and is comparable to Python 2.7: http://speed.python.org Pypy 3.5 just came out….hopefully better performance with that Now that Python has asyncio built in, the “Twisted way” of doing things has some validation, and is pervading more libraries and projects in Python
  • 37. Thanks All who started before me on the Python 3 effort: Jean-Paul, Itamar, Amber, Glyph, Ralph, many others All who helped code review my patches: Adi Roiban, Alex Gaynor, Glyph, many others Special thanks to Abhishek Choudhary for help on code reviews